import plotly.express as px
Scatter Geo Graph
g = px.scatter_geo(df,
lat='latitude_col',
lon='longitude_col',
locations='location_col',
locationmode='country names',
color='location_col',
size='count_col')
g.update_layout(title_text = 'title',
geo_scope='usa')
g.show()