Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,9 +43,9 @@ demo = gr.Blocks()
|
|
43 |
with demo:
|
44 |
with gr.Row():
|
45 |
y_value = gr.Dropdown(choices = ['Taraf', 'Hadith', 'Isnad', 'Ranking'], value = 'Taraf', label = 'Y Axis')
|
46 |
-
city = gr.Dropdown(choices = cities, value = ['المدينه', 'بغداد', 'كوفة', 'بصرة'], multiselect=True)
|
47 |
-
begining = gr.Slider(min_year, max_year, value = 0, label = '
|
48 |
-
end = gr.Slider(min_year, max_year, value = 400, label = '
|
49 |
btn = gr.Button("Plot")
|
50 |
btn.click(plot_timeline, [y_value,city, begining, end], gr.Plot())
|
51 |
demo.launch()
|
|
|
43 |
with demo:
|
44 |
with gr.Row():
|
45 |
y_value = gr.Dropdown(choices = ['Taraf', 'Hadith', 'Isnad', 'Ranking'], value = 'Taraf', label = 'Y Axis')
|
46 |
+
city = gr.Dropdown(choices = cities, value = ['المدينه', 'بغداد', 'كوفة', 'بصرة'], multiselect=True, label = 'City')
|
47 |
+
begining = gr.Slider(min_year, max_year, value = 0, label = 'First Year', info = 'Choose the first year to display Tarafs')
|
48 |
+
end = gr.Slider(min_year, max_year, value = 400, label = 'Last Year', info = 'Choose the last year to display Tarafs')
|
49 |
btn = gr.Button("Plot")
|
50 |
btn.click(plot_timeline, [y_value,city, begining, end], gr.Plot())
|
51 |
demo.launch()
|