duongthienz commited on
Commit
6aea4a8
·
verified ·
1 Parent(s): 95c4ccc

move population to first position

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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", "Population", "Download"]
265
- renameTab, pie2, sunburst1, treemap1, bar1, timeline, populationTab, dataTab = st.tabs(TAB_NAMES)
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()