Spaces:
Sleeping
Sleeping
Update pages/comps_data.py
Browse files- pages/comps_data.py +1 -2
pages/comps_data.py
CHANGED
|
@@ -78,7 +78,7 @@ def main():
|
|
| 78 |
|
| 79 |
|
| 80 |
filtered_data2 = df_data[['Address', 'Market', 'Sub-market', 'Lease Date', 'LSF', 'RSF', 'Rent (NNN)', 'Year Built', 'Office %', 'Clear Height', 'Doors (drive in / Dock)', 'Lease Term ', 'Rent (Gross)']]
|
| 81 |
-
filtered_data = pd.concat([filtered_data2
|
| 82 |
|
| 83 |
# Display the filtered data
|
| 84 |
col_1_1, col_1_2 = st.columns([2, 1])
|
|
@@ -185,7 +185,6 @@ def main():
|
|
| 185 |
range_7 = st.slider('Docl doors & Drive-in', min_value=0, max_value=20,
|
| 186 |
value=3)
|
| 187 |
st.button("Apply filter", key="submit_button", help="Click to submit")
|
| 188 |
-
st.write(filtered_data)
|
| 189 |
|
| 190 |
|
| 191 |
if __name__ == "__main__":
|
|
|
|
| 78 |
|
| 79 |
|
| 80 |
filtered_data2 = df_data[['Address', 'Market', 'Sub-market', 'Lease Date', 'LSF', 'RSF', 'Rent (NNN)', 'Year Built', 'Office %', 'Clear Height', 'Doors (drive in / Dock)', 'Lease Term ', 'Rent (Gross)']]
|
| 81 |
+
filtered_data = pd.concat([filtered_data2])
|
| 82 |
|
| 83 |
# Display the filtered data
|
| 84 |
col_1_1, col_1_2 = st.columns([2, 1])
|
|
|
|
| 185 |
range_7 = st.slider('Docl doors & Drive-in', min_value=0, max_value=20,
|
| 186 |
value=3)
|
| 187 |
st.button("Apply filter", key="submit_button", help="Click to submit")
|
|
|
|
| 188 |
|
| 189 |
|
| 190 |
if __name__ == "__main__":
|