vgosavi2 commited on
Commit
91b6b2a
·
verified ·
1 Parent(s): 93f5363

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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, "Count")
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,