Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
7fdbba7
1
Parent(s):
c83239a
Update app.py
Browse files
app.py
CHANGED
@@ -179,6 +179,11 @@ with st.sidebar:
|
|
179 |
if radius_visible:
|
180 |
radius_in_meters = st.slider('Selecione raio (em metros)', min_value=100, max_value=5000, value=1000)
|
181 |
|
|
|
|
|
|
|
|
|
|
|
182 |
# Add sliders to filter data based
|
183 |
atotal_range = st.slider('Área Total', float(data_tipo['Atotal'].min()), float(data_tipo['Atotal'].max()), (float(data_tipo['Atotal'].min()), float(data_tipo['Atotal'].max())), step=.1)
|
184 |
apriv_range = st.slider('Área Privativa', float(data_tipo['Apriv'].min()), float(data_tipo['Apriv'].max()), (float(data_tipo['Apriv'].min()), float(data_tipo['Apriv'].max())), step=.1)
|
|
|
179 |
if radius_visible:
|
180 |
radius_in_meters = st.slider('Selecione raio (em metros)', min_value=100, max_value=5000, value=1000)
|
181 |
|
182 |
+
# Initialize sliders variables
|
183 |
+
dorm_range = False
|
184 |
+
banho_range = False
|
185 |
+
vaga_range = False
|
186 |
+
|
187 |
# Add sliders to filter data based
|
188 |
atotal_range = st.slider('Área Total', float(data_tipo['Atotal'].min()), float(data_tipo['Atotal'].max()), (float(data_tipo['Atotal'].min()), float(data_tipo['Atotal'].max())), step=.1)
|
189 |
apriv_range = st.slider('Área Privativa', float(data_tipo['Apriv'].min()), float(data_tipo['Apriv'].max()), (float(data_tipo['Apriv'].min()), float(data_tipo['Apriv'].max())), step=.1)
|