Borya-Goldarb commited on
Commit
38f3c03
·
verified ·
1 Parent(s): 711d15a

Update pages/comps_data.py

Browse files
Files changed (1) hide show
  1. pages/comps_data.py +12 -2
pages/comps_data.py CHANGED
@@ -145,7 +145,7 @@ def main():
145
  hide_index=True,
146
  )
147
  with col_3_2:
148
- st.button("Add properties")
149
  with col_3_3:
150
  st.write('Filter definition')
151
 
@@ -155,7 +155,17 @@ def main():
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
 
 
145
  hide_index=True,
146
  )
147
  with col_3_2:
148
+ st.button("Add comps", help="Click to add more comps")
149
  with col_3_3:
150
  st.write('Filter definition')
151
 
 
155
  value=(12))
156
  range_3 = st.slider('LSF', min_value=0, max_value=500000, step = 1000,
157
  value=(20000, 200000))
158
+ range_4 = st.slider('Clear height', min_value=0, max_value=50,
159
+ value=(15, 30))
160
+ range_5 = st.slider('Year built', min_value=1960, max_value=2024,
161
+ value=(1999, 2010))
162
+ range_5 = st.slider('Far %', min_value=0, max_value=100,
163
+ value=50)
164
+ range_6 = st.slider('Office %', min_value=0, max_value=100,
165
+ value=30)
166
+ range_7 = st.slider('Docl doors & Drive-in', min_value=0, max_value=20,
167
+ value=3)
168
+ st.button("Apply filter", key="submit_button", help="Click to submit")
169
  st.write(filtered_data)
170
 
171