fschwartzer commited on
Commit
bc7b20c
1 Parent(s): 32252be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -261,13 +261,8 @@ if 'Predicted_target' in filtered_data.columns and not np.all(predicted_target =
261
  lower_bound, higher_bound, mean_value = bootstrap_stats(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
-
268
-
269
- # Display the predicted Predicted_target values
270
- st.write("Valores (R$/m²) previstos com algoritmo KNN:")
271
- st.write(filtered_data[['Localização', 'Atotal', 'Apriv', 'Vunit_total', 'Vunit_priv', 'Predicted_target']])
272
  else:
273
  st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
 
261
  lower_bound, higher_bound, mean_value = bootstrap_stats(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}")