Spaces:
Paused
Paused
FInal
Browse files
app.py
CHANGED
|
@@ -286,7 +286,7 @@ def make_figure(original_df, start_time_gradio, speak_french):
|
|
| 286 |
xaxis_title="Date",
|
| 287 |
hovermode="closest",
|
| 288 |
xaxis_range=[start_date, current_date], # Extend x-axis for labels
|
| 289 |
-
yaxis_range=[df.loc[df["Release Date"] >= start_date]["rating"].min(), df["rating"].max() + margin],
|
| 290 |
)
|
| 291 |
apply_template(fig, annotation_text="Aymeric Roucher", height=600)
|
| 292 |
|
|
|
|
| 286 |
xaxis_title="Date",
|
| 287 |
hovermode="closest",
|
| 288 |
xaxis_range=[start_date, current_date], # Extend x-axis for labels
|
| 289 |
+
yaxis_range=[df.loc[df["Release Date"] >= start_date]["rating"].min()+margin, df["rating"].max() + margin],
|
| 290 |
)
|
| 291 |
apply_template(fig, annotation_text="Aymeric Roucher", height=600)
|
| 292 |
|