Spaces:
Sleeping
Sleeping
Daniel Cerda Escobar
commited on
Commit
•
c075e0e
1
Parent(s):
2d35b04
Display data
Browse files
app.py
CHANGED
@@ -203,7 +203,7 @@ with col2:
|
|
203 |
with tab4:
|
204 |
col1,col2,col3 = st.columns([1,4,1])
|
205 |
with col2:
|
206 |
-
chart_data = st.session_state["output_4"]
|
207 |
-
st.bar_chart(chart_data,x='category',y='count',x_label='Object',y_label='
|
208 |
|
209 |
|
|
|
203 |
with tab4:
|
204 |
col1,col2,col3 = st.columns([1,4,1])
|
205 |
with col2:
|
206 |
+
chart_data = st.session_state["output_4"]
|
207 |
+
st.bar_chart(chart_data[['category','count']],x='category',y='count',x_label='Object',y_label='N°', horizontal=False, use_container_width=True)
|
208 |
|
209 |
|