Kristijan commited on
Commit
5ff6d2a
·
1 Parent(s): b37f89d

remove accordion

Browse files
Files changed (1) hide show
  1. app.py +14 -21
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.accordion(
107
- ui.accordion_panel(
108
- "",
109
- [
110
- ui.card(
111
- ui.card_header(
112
- "Full time scale analysis ",
113
- ui.tooltip(
114
- ui.tags.span(
115
- question_circle_fill,
116
- style="cursor: help; font-size: 14px;",
117
- ),
118
- "This analysis shows the gini coefficient over the entire dataset. Select specific timepoints below to explore narrow time windows.",
119
- placement="top",
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