GMARTINEZMILLA commited on
Commit
6b34b4f
1 Parent(s): 2124e26

feat: updated app script

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -194,7 +194,7 @@ if page == "Summary":
194
  labels = ['Outbound', 'Inbound']
195
  color_scheme = ['#155F7A', '#29b5e8']
196
 
197
- donut_fig = create_donut_chart(inbound_values, labels, color_scheme, title)
198
  st.plotly_chart(donut_fig, use_container_width=True)
199
 
200
 
@@ -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', title="")
228
  st.plotly_chart(fig_sales, use_container_width=True)
229
 
230
  # Right Column (Blue): Key Metrics Overview and Data Preparation Summary
 
194
  labels = ['Outbound', 'Inbound']
195
  color_scheme = ['#155F7A', '#29b5e8']
196
 
197
+ donut_fig = create_donut_chart(inbound_values, labels, color_scheme)
198
  st.plotly_chart(donut_fig, use_container_width=True)
199
 
200
 
 
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