Spaces:
Runtime error
Runtime error
Fix title
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ with gr.Blocks() as demo:
|
|
36 |
value_plot = gr.LinePlot(data_to_plot,
|
37 |
x="date",
|
38 |
y="Close",
|
39 |
-
title=f'
|
40 |
y_lim=[float(data_to_plot['Close'].min())-5, float(data_to_plot['Close'].max())+5])
|
41 |
|
42 |
outputs = [jump_text,
|
|
|
36 |
value_plot = gr.LinePlot(data_to_plot,
|
37 |
x="date",
|
38 |
y="Close",
|
39 |
+
title=f'Closes in last {days_to_plot} days',
|
40 |
y_lim=[float(data_to_plot['Close'].min())-5, float(data_to_plot['Close'].max())+5])
|
41 |
|
42 |
outputs = [jump_text,
|