Spaces:
Sleeping
Sleeping
Commit
·
fc194f7
1
Parent(s):
71ecb21
smaller plot
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ def plot_data(filtered_data):
|
|
| 29 |
prediction_10 = filtered_data['prediction_10']
|
| 30 |
prediction_90 = filtered_data['prediction_90']
|
| 31 |
|
| 32 |
-
plt.figure(figsize=(
|
| 33 |
|
| 34 |
# Plot the target
|
| 35 |
plt.plot(dates, target, label='Target', color='blue')
|
|
|
|
| 29 |
prediction_10 = filtered_data['prediction_10']
|
| 30 |
prediction_90 = filtered_data['prediction_90']
|
| 31 |
|
| 32 |
+
plt.figure(figsize=(7, 7))
|
| 33 |
|
| 34 |
# Plot the target
|
| 35 |
plt.plot(dates, target, label='Target', color='blue')
|