Borya-Goldarb commited on
Commit
ad1a420
·
verified ·
1 Parent(s): 1a99bd7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -57,6 +57,14 @@ def main():
57
  # # option2 = st.checkbox("Special tax area", value=False)
58
  # # special parameters free text
59
  # user_input = st.text_input("Enter special parameters of the building:")
 
 
 
 
 
 
 
 
60
 
61
  if st.button("Submit"):
62
  if selected_option == "":
 
57
  # # option2 = st.checkbox("Special tax area", value=False)
58
  # # special parameters free text
59
  # user_input = st.text_input("Enter special parameters of the building:")
60
+ col_1_1, col_1_2 = st.columns([1, 2])
61
+ with col_1_1:
62
+ st.write('Filter definition')
63
+
64
+ range_1 = st.slider('Property Size % Filter', min_value=-100, max_value=300, step = 10,
65
+ value=(-20, 20))
66
+ range_2 = st.slider('Lease date', min_value=0, max_value=36,
67
+ value=(12))
68
 
69
  if st.button("Submit"):
70
  if selected_option == "":