RMHalak commited on
Commit
82c29e7
·
verified ·
1 Parent(s): 923de78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -79,9 +79,7 @@ with col1:
79
  with col2:
80
  # Placeholder for displaying the predicted price at the top
81
  price_placeholder = st.empty()
82
- # price_placeholder.markdown(
83
- # f"<h1 style='font-size: 24px;'>Predicted Price: ${predicted_price[0][0]:,.2f}</h1>",
84
- # unsafe_allow_html=True)
85
  price_placeholder.subheader(f'Predicted Price: ${predicted_price[0][0]:,.2f}')
86
  map_data = pd.DataFrame(cities_geo[city])
87
- st.map(map_data, zoom=11)
 
 
79
  with col2:
80
  # Placeholder for displaying the predicted price at the top
81
  price_placeholder = st.empty()
 
 
 
82
  price_placeholder.subheader(f'Predicted Price: ${predicted_price[0][0]:,.2f}')
83
  map_data = pd.DataFrame(cities_geo[city])
84
+ with st.container(height=800, border=True):
85
+ st.map(map_data, zoom=11)