-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprediction.html
41 lines (38 loc) · 1.34 KB
/
prediction.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>
Predictive Analysis Tool - Generate Forecasts from Historical Data
</title>
<link href="./css/styles.css" rel="stylesheet" />
<!-- Include the Plotly.js library -->
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="./scripts/prediction.js"></script>
<meta
content="Use the Predictive Analysis Tool to upload historical data in CSV format and generate accurate forecasts. Visualize predictions with interactive charts."
name="description" />
<meta content="predictive analysis, historical data, CSV upload, data visualization, interactive charts, forecasts"
name="keywords" />
</head>
<body>
<div class="container">
<h2>
Predictive Analysis Tool
</h2>
<p>
Upload historical data (in CSV format) to generate predictions.
</p>
<div>
<input id="historicalDataInput" type="file" />
<button onclick="generatePredictions()">
Generate Predictions
</button>
</div>
<!-- Adjusted visualization container for Plotly -->
<div id="predictionChart">
</div>
</div>
</body>
</html>