Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -593,13 +593,13 @@ if len(st.session_state.results) > 0:
|
|
| 593 |
df7_dict[voiceNames[i]].append(partialDf["percentiles"][i])
|
| 594 |
df7 = pd.DataFrame(df7_dict)
|
| 595 |
sorted_df7 = df7.sort_values(by=['One Voice', 'Multi Voice'])
|
| 596 |
-
summFig2 = px.bar(sorted_df7, x="files", y=["One Voice","Multi Voice","No Voice",])
|
| 597 |
st.plotly_chart(summFig2, use_container_width=True)
|
| 598 |
sorted_df7_3 = df7.sort_values(by=['Multi Voice','One Voice'])
|
| 599 |
-
summFig3 = px.bar(sorted_df7_3, x="files", y=["One Voice","Multi Voice","No Voice",])
|
| 600 |
st.plotly_chart(summFig3, use_container_width=True)
|
| 601 |
sorted_df7_4 = df7.sort_values(by=['No Voice', 'Multi Voice'],ascending=False)
|
| 602 |
-
summFig4 = px.bar(sorted_df7_4, x="files", y=["One Voice","Multi Voice","No Voice",])
|
| 603 |
st.plotly_chart(summFig4, use_container_width=True)
|
| 604 |
|
| 605 |
|
|
|
|
| 593 |
df7_dict[voiceNames[i]].append(partialDf["percentiles"][i])
|
| 594 |
df7 = pd.DataFrame(df7_dict)
|
| 595 |
sorted_df7 = df7.sort_values(by=['One Voice', 'Multi Voice'])
|
| 596 |
+
summFig2 = px.bar(sorted_df7, x="files", y=["One Voice","Multi Voice","No Voice",],key="sumOMN_chart")
|
| 597 |
st.plotly_chart(summFig2, use_container_width=True)
|
| 598 |
sorted_df7_3 = df7.sort_values(by=['Multi Voice','One Voice'])
|
| 599 |
+
summFig3 = px.bar(sorted_df7_3, x="files", y=["One Voice","Multi Voice","No Voice",],key="sumMON_chart")
|
| 600 |
st.plotly_chart(summFig3, use_container_width=True)
|
| 601 |
sorted_df7_4 = df7.sort_values(by=['No Voice', 'Multi Voice'],ascending=False)
|
| 602 |
+
summFig4 = px.bar(sorted_df7_4, x="files", y=["One Voice","Multi Voice","No Voice",],key="sumNMO_chart")
|
| 603 |
st.plotly_chart(summFig4, use_container_width=True)
|
| 604 |
|
| 605 |
|