vgosavi2 commited on
Commit
11fbfb0
·
verified ·
1 Parent(s): 91b6b2a

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -283,8 +283,8 @@ st.write(top_regions)
283
  # 2. Build the bubble chart
284
  fig = px.scatter(
285
  top_regions,
286
- x='RegionName',
287
- y='Count',
288
  size='Count', # bubble area ∝ incident count
289
  color='Count', # color scale also shows volume
290
  hover_name='RegionName', # show region on hover
 
283
  # 2. Build the bubble chart
284
  fig = px.scatter(
285
  top_regions,
286
+ x='Count',
287
+ y='RegionName',
288
  size='Count', # bubble area ∝ incident count
289
  color='Count', # color scale also shows volume
290
  hover_name='RegionName', # show region on hover