Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -192,7 +192,7 @@ if nav == 'Heuristic Pricing':
|
|
| 192 |
col3, col4 = st.columns(2)
|
| 193 |
with col3:
|
| 194 |
df_nearby_stats = gdf_nearby_listings[["price"]].describe().round(2)
|
| 195 |
-
df_nearby_stats.columns = pd.Index(["
|
| 196 |
st.table(df_nearby_stats.style.format("{:.2f}"))
|
| 197 |
with col4:
|
| 198 |
# Plot Stats
|
|
|
|
| 192 |
col3, col4 = st.columns(2)
|
| 193 |
with col3:
|
| 194 |
df_nearby_stats = gdf_nearby_listings[["price"]].describe().round(2)
|
| 195 |
+
df_nearby_stats.columns = pd.Index(["Price"])
|
| 196 |
st.table(df_nearby_stats.style.format("{:.2f}"))
|
| 197 |
with col4:
|
| 198 |
# Plot Stats
|