-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
P2considered for next cycleconsidered for next cycleP3backlogbacklogbugsomething brokensomething broken
Description
When using ISO 3166 country codes as choropleth map locations, French Guiana is incorrectly plotted as part of France, despite its code being FR-GF.
Here is a working example:
import Pandas as pd
import plotly.express as px
df = pd.DataFrame()
df['code'] = ['FRA']
df['x'] = 1
fig = px.choropleth(df, locations="code", color="x")
fig.show()
renesteeman
Metadata
Metadata
Assignees
Labels
P2considered for next cycleconsidered for next cycleP3backlogbacklogbugsomething brokensomething broken