Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
72d1967
1
Parent(s):
7fdbba7
Update app.py
Browse files
app.py
CHANGED
@@ -180,20 +180,21 @@ with st.sidebar:
|
|
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 =
|
184 |
-
banho_range =
|
185 |
-
vaga_range =
|
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)
|
|
|
190 |
if int(data_tipo['Dorm'].min()) != 0 and int(data_tipo['Dorm'].max()) != 0:
|
191 |
dorm_range = st.slider('Dormitórios', int(data_tipo['Dorm'].min()), int(data_tipo['Dorm'].max()), (int(data_tipo['Dorm'].min()), int(data_tipo['Dorm'].max())), step=1)
|
192 |
if int(data_tipo['Banheiro'].min()) != 0 and int(data_tipo['Banheiro'].max()) != 0:
|
193 |
banho_range = st.slider('Banheiros', int(data_tipo['Banheiro'].min()), int(data_tipo['Banheiro'].max()), (int(data_tipo['Banheiro'].min()), int(data_tipo['Banheiro'].max())), step=1)
|
194 |
if int(data_tipo['Vaga'].min()) != 0 and int(data_tipo['Vaga'].max()) != 0:
|
195 |
vaga_range = st.slider('Vaga de estacionamento', int(data_tipo['Vaga'].min()), int(data_tipo['Vaga'].max()), (int(data_tipo['Vaga'].min()), int(data_tipo['Vaga'].max())), step=1)
|
196 |
-
|
197 |
# Initialize checkbox variables
|
198 |
elev_checkbox = False
|
199 |
churr_checkbox = False
|
|
|
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 = (int(data_tipo['Dorm'].min()), int(data_tipo['Dorm'].max()))
|
184 |
+
banho_range = (int(data_tipo['Banheiro'].min()), int(data_tipo['Banheiro'].max()))
|
185 |
+
vaga_range = (int(data_tipo['Vaga'].min()), int(data_tipo['Vaga'].max()))
|
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)
|
190 |
+
|
191 |
if int(data_tipo['Dorm'].min()) != 0 and int(data_tipo['Dorm'].max()) != 0:
|
192 |
dorm_range = st.slider('Dormitórios', int(data_tipo['Dorm'].min()), int(data_tipo['Dorm'].max()), (int(data_tipo['Dorm'].min()), int(data_tipo['Dorm'].max())), step=1)
|
193 |
if int(data_tipo['Banheiro'].min()) != 0 and int(data_tipo['Banheiro'].max()) != 0:
|
194 |
banho_range = st.slider('Banheiros', int(data_tipo['Banheiro'].min()), int(data_tipo['Banheiro'].max()), (int(data_tipo['Banheiro'].min()), int(data_tipo['Banheiro'].max())), step=1)
|
195 |
if int(data_tipo['Vaga'].min()) != 0 and int(data_tipo['Vaga'].max()) != 0:
|
196 |
vaga_range = st.slider('Vaga de estacionamento', int(data_tipo['Vaga'].min()), int(data_tipo['Vaga'].max()), (int(data_tipo['Vaga'].min()), int(data_tipo['Vaga'].max())), step=1)
|
197 |
+
|
198 |
# Initialize checkbox variables
|
199 |
elev_checkbox = False
|
200 |
churr_checkbox = False
|