fschwartzer commited on
Commit
7d796d3
1 Parent(s): e949094

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -121,5 +121,5 @@ with st.container():
121
 
122
  # Display the predicted Vunit values if applicable
123
  if 'Predicted_Vunit' in filtered_data.columns:
124
- st.write("Predicted Vunit Values:")
125
- st.write(filtered_data[['latitude', 'longitude', 'Vunit', 'Predicted_Vunit']])
 
121
 
122
  # Display the predicted Vunit values if applicable
123
  if 'Predicted_Vunit' in filtered_data.columns:
124
+ st.write("Valores (R$/m²) previstos com algoritmo KNN:")
125
+ st.write(filtered_data[['latitude', 'longitude', 'Vunit', 'KNN (R$/m²)']])