-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
Description
I am visualizing some data with plotly.express.scatter_geo. Malaysian data is shown in a wrong place:

Actually, Malaysia resides on both islands:

...but the capital Kuala Lumpur is situated in north-western part, and this part is associated with MY on maps by people.
Code is the following:
import nbformat
import plotly.express as px
import pandas as pd
...
fig = px.scatter_geo(df_merged, locations="alpha_3", size="devices", hover_name="country")
print(fig.to_html())
Package version is plotly==4.11.0.
JSON map is world_110m.json.