Spaces:
Sleeping
Sleeping
Update pages/comps_data.py
Browse files- pages/comps_data.py +1 -1
pages/comps_data.py
CHANGED
|
@@ -48,7 +48,7 @@ def main():
|
|
| 48 |
col_1_1, col_1_2 = st.columns([2, 1])
|
| 49 |
with col_1_1:
|
| 50 |
st.write('Comps list:')
|
| 51 |
-
display_df = st.table(
|
| 52 |
with col_1_2:
|
| 53 |
# Create a map object
|
| 54 |
m = folium.Map(width=500, height=440, location=(df_data['latitude'].mean(), df_data['longitude'].mean()), zoom_start=10)
|
|
|
|
| 48 |
col_1_1, col_1_2 = st.columns([2, 1])
|
| 49 |
with col_1_1:
|
| 50 |
st.write('Comps list:')
|
| 51 |
+
display_df = st.table(filtered_data)
|
| 52 |
with col_1_2:
|
| 53 |
# Create a map object
|
| 54 |
m = folium.Map(width=500, height=440, location=(df_data['latitude'].mean(), df_data['longitude'].mean()), zoom_start=10)
|