fschwartzer commited on
Commit
9215e3b
·
1 Parent(s): b7d2bd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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${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}")
 
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}")