ibrahimnomad commited on
Commit
b7c4307
·
verified ·
1 Parent(s): 70b0e3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -34,6 +34,9 @@ st.plotly_chart(fig)
34
  st.write("#### Western Europe Map")
35
  st.image('https://i.pinimg.com/736x/7b/98/94/7b9894e2f3059e6b1e2fa808516e57b7.jpg')
36
 
 
 
 
37
 
38
  st.write("#### Cleaned Data Frame")
39
  st.write("We have 190K of good reviews now, with tags and country info ready to process.")
 
34
  st.write("#### Western Europe Map")
35
  st.image('https://i.pinimg.com/736x/7b/98/94/7b9894e2f3059e6b1e2fa808516e57b7.jpg')
36
 
37
+ df.rename(columns={'lng': 'lon'}, inplace=True)
38
+ st.map(df)
39
+
40
 
41
  st.write("#### Cleaned Data Frame")
42
  st.write("We have 190K of good reviews now, with tags and country info ready to process.")