Spaces:
Build error
Build error
Update src/streamlit_app.py
Browse files- 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='
|
| 287 |
-
y='
|
| 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
|