We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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()
The text was updated successfully, but these errors were encountered:
I also came across this issue, despite the fact that my data labels French Guiana as GUF.
Sorry, something went wrong.
@archmoj will upcoming work address this?
No. This is related to geo subplots not map & mapbox. @ndrezn Could you please keep track of it?
geo
map
mapbox
Closing in favour of plotly/plotly.js#7334
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: