Spaces:
Sleeping
Sleeping
Commit
·
9215e3b
1
Parent(s):
b7d2bd1
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:**
|
266 |
-
st.write(f"**Os valores podem variar entre
|
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:** {format(mean_value, 'R$,.2f')}")
|
266 |
+
st.write(f"**Os valores podem variar entre {format(lower_bound, 'R$,.2f')} e {format(higher_bound, 'R$,.2f')} 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}")
|