Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
b7d2bd1
1
Parent(s):
bc7b20c
Update app.py
Browse files
app.py
CHANGED
@@ -262,7 +262,7 @@ if 'Predicted_target' in filtered_data.columns and not np.all(predicted_target =
|
|
262 |
|
263 |
# Display the results with custom styling
|
264 |
st.markdown("## **Resultado da Análise Estatística**")
|
265 |
-
st.write(f"**Valor médio (R$/m²) para as características selecionadas:** R
|
266 |
-
st.write(f"**Os valores podem variar entre R
|
267 |
else:
|
268 |
-
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|
|
|
262 |
|
263 |
# Display the results with custom styling
|
264 |
st.markdown("## **Resultado da Análise Estatística**")
|
265 |
+
st.write(f"**Valor médio (R$/m²) para as características selecionadas:** R${round(mean_value)}")
|
266 |
+
st.write(f"**Os valores podem variar entre R${round(lower_bound)} e R${round(higher_bound)} dependendo das características dos imóveis.**")
|
267 |
else:
|
268 |
+
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|