Spaces:
Sleeping
Sleeping
Update pages/comps_data.py
Browse files- pages/comps_data.py +9 -3
pages/comps_data.py
CHANGED
|
@@ -131,7 +131,7 @@ def main():
|
|
| 131 |
if option == ":rainbow[On]":
|
| 132 |
col_3_1, col_3_2, col_3_3 = st.columns([5,1,5])
|
| 133 |
with col_3_1:
|
| 134 |
-
st.
|
| 135 |
st.data_editor(
|
| 136 |
df5,
|
| 137 |
column_config={
|
|
@@ -147,9 +147,15 @@ def main():
|
|
| 147 |
with col_3_2:
|
| 148 |
st.button("Add properties")
|
| 149 |
with col_3_3:
|
| 150 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
# s = st.container(height=120)
|
| 152 |
-
st.write('Comps list:')
|
| 153 |
st.write(filtered_data)
|
| 154 |
|
| 155 |
|
|
|
|
| 131 |
if option == ":rainbow[On]":
|
| 132 |
col_3_1, col_3_2, col_3_3 = st.columns([5,1,5])
|
| 133 |
with col_3_1:
|
| 134 |
+
st.write('Additional comps')
|
| 135 |
st.data_editor(
|
| 136 |
df5,
|
| 137 |
column_config={
|
|
|
|
| 147 |
with col_3_2:
|
| 148 |
st.button("Add properties")
|
| 149 |
with col_3_3:
|
| 150 |
+
st.write('Filter definition')
|
| 151 |
+
|
| 152 |
+
range_1 = st.slider('Lease date', min_value=0, max_value=36,
|
| 153 |
+
value=(12))
|
| 154 |
+
range_2 = st.slider('Location in mi', min_value=0, max_value=50,
|
| 155 |
+
value=(12))
|
| 156 |
+
range_3 = st.slider('LSF', min_value=0, max_value=500000, step = 1000,
|
| 157 |
+
value=(20000, 200000))
|
| 158 |
# s = st.container(height=120)
|
|
|
|
| 159 |
st.write(filtered_data)
|
| 160 |
|
| 161 |
|