remove accordion
Browse files
app.py
CHANGED
@@ -103,27 +103,20 @@ page_dependencies = ui.tags.head(
|
|
103 |
)
|
104 |
|
105 |
# main panel showing the line plot
|
106 |
-
analysis_panel = ui.
|
107 |
-
ui.
|
108 |
-
"",
|
109 |
-
|
110 |
-
ui.
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
),
|
121 |
-
),
|
122 |
-
ui.input_checkbox("smooth_checkbox", "Show smoothed line", value=False),
|
123 |
-
output_widget("line_plot", height="300px"),
|
124 |
-
)
|
125 |
-
],
|
126 |
-
)
|
127 |
)
|
128 |
|
129 |
# panel to show hashtag distributions
|
|
|
103 |
)
|
104 |
|
105 |
# main panel showing the line plot
|
106 |
+
analysis_panel = ui.card(
|
107 |
+
ui.card_header(
|
108 |
+
"Full time scale analysis ",
|
109 |
+
ui.tooltip(
|
110 |
+
ui.tags.span(
|
111 |
+
question_circle_fill,
|
112 |
+
style="cursor: help; font-size: 14px;",
|
113 |
+
),
|
114 |
+
"This analysis shows the gini coefficient over the entire dataset. Select specific timepoints below to explore narrow time windows.",
|
115 |
+
placement="top",
|
116 |
+
),
|
117 |
+
),
|
118 |
+
ui.input_checkbox("smooth_checkbox", "Show smoothed line", value=False),
|
119 |
+
output_widget("line_plot", height="300px"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
)
|
121 |
|
122 |
# panel to show hashtag distributions
|