Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -129,12 +129,26 @@ if 'key0' in st.session_state:
|
|
129 |
# color_discrete_sequence=px.colors.qualitative.Plotly
|
130 |
)
|
131 |
|
132 |
-
|
133 |
-
|
134 |
|
135 |
|
136 |
# Bar cart
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
# Display the table
|
140 |
st.table(st.session_state['key0'])
|
|
|
129 |
# color_discrete_sequence=px.colors.qualitative.Plotly
|
130 |
)
|
131 |
|
132 |
+
#Show plot
|
133 |
+
st.plotly_chart(fig, use_container_width=True)
|
134 |
|
135 |
|
136 |
# Bar cart
|
137 |
+
with col2:
|
138 |
+
|
139 |
+
# Configure graph
|
140 |
+
fig = px.pie(df_labels,
|
141 |
+
x="Label",
|
142 |
+
y="Count",
|
143 |
+
# color='Country',
|
144 |
+
title='Label Counts',
|
145 |
+
hover_name="Count",
|
146 |
+
# color_discrete_sequence=px.colors.qualitative.Plotly
|
147 |
+
)
|
148 |
+
|
149 |
+
#Show plot
|
150 |
+
st.plotly_chart(fig, use_container_width=True)
|
151 |
+
|
152 |
|
153 |
# Display the table
|
154 |
st.table(st.session_state['key0'])
|