Spaces:
Build error
Build error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -278,8 +278,8 @@ region_counts = (
|
|
| 278 |
.size() # count rows
|
| 279 |
.reset_index(name="Count") # turn it into a DataFrame with columns RegionName & Count
|
| 280 |
)
|
| 281 |
-
top_regions = region_counts.head(10
|
| 282 |
-
|
| 283 |
# 2. Build the bubble chart
|
| 284 |
fig = px.scatter(
|
| 285 |
top_regions,
|
|
|
|
| 278 |
.size() # count rows
|
| 279 |
.reset_index(name="Count") # turn it into a DataFrame with columns RegionName & Count
|
| 280 |
)
|
| 281 |
+
top_regions = region_counts.head(10)
|
| 282 |
+
st.write(top_regions)
|
| 283 |
# 2. Build the bubble chart
|
| 284 |
fig = px.scatter(
|
| 285 |
top_regions,
|