Spaces:
Sleeping
Sleeping
move population to first position
Browse files
app.py
CHANGED
|
@@ -260,9 +260,9 @@ try:
|
|
| 260 |
raise ValueError("File not yet analyzed")
|
| 261 |
|
| 262 |
st.header(f"Analysis of file {currFile}")
|
| 263 |
-
TAB_NAMES = ["Speakers & Roles", "Pie Chart", "Sunburst",
|
| 264 |
-
"Treemap", "Time Spoken", "Timeline", "
|
| 265 |
-
renameTab, pie2, sunburst1, treemap1, bar1, timeline,
|
| 266 |
|
| 267 |
currAnnotation, currTotalTime = st.session_state.results[currFile]
|
| 268 |
speakerNames = currAnnotation.labels()
|
|
|
|
| 260 |
raise ValueError("File not yet analyzed")
|
| 261 |
|
| 262 |
st.header(f"Analysis of file {currFile}")
|
| 263 |
+
TAB_NAMES = ["Population", "Speakers & Roles", "Pie Chart", "Sunburst",
|
| 264 |
+
"Treemap", "Time Spoken", "Timeline", "Download"]
|
| 265 |
+
populationTab, renameTab, pie2, sunburst1, treemap1, bar1, timeline, dataTab = st.tabs(TAB_NAMES)
|
| 266 |
|
| 267 |
currAnnotation, currTotalTime = st.session_state.results[currFile]
|
| 268 |
speakerNames = currAnnotation.labels()
|