Spaces:
Sleeping
Sleeping
Commit
·
2124e26
1
Parent(s):
c8290d2
feat: updated app script
Browse files
app.py
CHANGED
@@ -224,7 +224,7 @@ if page == "Summary":
|
|
224 |
sales_data = {'Cluster': ['Cluster 1', 'Cluster 2', 'Cluster 3', 'Cluster 4'],
|
225 |
'Sales': [400000, 600000, 500000, 300000]}
|
226 |
df_sales = pd.DataFrame(sales_data)
|
227 |
-
fig_sales = px.bar(df_sales, x='Cluster', y='Sales')
|
228 |
st.plotly_chart(fig_sales, use_container_width=True)
|
229 |
|
230 |
# Right Column (Blue): Key Metrics Overview and Data Preparation Summary
|
|
|
224 |
sales_data = {'Cluster': ['Cluster 1', 'Cluster 2', 'Cluster 3', 'Cluster 4'],
|
225 |
'Sales': [400000, 600000, 500000, 300000]}
|
226 |
df_sales = pd.DataFrame(sales_data)
|
227 |
+
fig_sales = px.bar(df_sales, x='Cluster', y='Sales', title="")
|
228 |
st.plotly_chart(fig_sales, use_container_width=True)
|
229 |
|
230 |
# Right Column (Blue): Key Metrics Overview and Data Preparation Summary
|