作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Jupyter 中使用plotly 绘制世界分区统计图时遇到了麻烦。一旦该值超过 1000, map 就会将该国家/地区显示为灰色,因为没有数据。我仔细检查了国家代码,它们都是正确的。我认为问题与图例有关,因为它最多只显示 1000,但我不知道如何更改它。我按照 https://plot.ly/python/choropleth-maps/ 上的文档进行操作到达我现在所在的位置。任何帮助,将不胜感激。这是我的数据的快照
number CODE COUNTRY
0 1146 USA United States
1 1450 CAN Canada
2 54 CRI Costa Rica
3 920 AUS Australia
这是我到目前为止的代码
fig = go.Figure(data=go.Choropleth(
locations = df['CODE'],
locationmode = "ISO-3",
z = df['number'],
text = df['COUNTRY'],
colorscale = 'Reds'
))
fig.update_layout(title_text="McDonald's per Country")
fig.show()
最佳答案
我非常确定问题出在您的数据源上。您要么 number
的数据格式错误,或者您缺少某些国家/地区的数据,甚至是您的 COUNTRY
中完全缺少的国家/地区的数据。专栏。
为什么我这么确定?
看看下面的代码片段生成的以下图:
plotly :
代码:
import plotly.express as px
gapminder = px.data.gapminder().query("year==2007")
fig = px.choropleth(gapminder, locations="iso_alpha",
color="lifeExp", # lifeExp is a column of gapminder
hover_name="country", # column to add to hover information
color_continuous_scale=px.colors.sequential.Plasma)
fig.show()
根据到目前为止我掌握的信息,我想到了一些事情:
Grey
不是色标的一部分。Greenland
和Russia
是灰色的。 gapminder['country'].unique()
返回:
array(['Afghanistan', 'Albania', 'Algeria', 'Angola', 'Argentina',
'Australia', 'Austria', 'Bahrain', 'Bangladesh', 'Belgium',
'Benin', 'Bolivia', 'Bosnia and Herzegovina', 'Botswana', 'Brazil',
'Bulgaria', 'Burkina Faso', 'Burundi', 'Cambodia', 'Cameroon',
'Canada', 'Central African Republic', 'Chad', 'Chile', 'China',
'Colombia', 'Comoros', 'Congo, Dem. Rep.', 'Congo, Rep.',
'Costa Rica', "Cote d'Ivoire", 'Croatia', 'Cuba', 'Czech Republic',
'Denmark', 'Djibouti', 'Dominican Republic', 'Ecuador', 'Egypt',
'El Salvador', 'Equatorial Guinea', 'Eritrea', 'Ethiopia',
'Finland', 'France', 'Gabon', 'Gambia', 'Germany', 'Ghana',
'Greece', 'Guatemala', 'Guinea', 'Guinea-Bissau', 'Haiti',
'Honduras', 'Hong Kong, China', 'Hungary', 'Iceland', 'India',
'Indonesia', 'Iran', 'Iraq', 'Ireland', 'Israel', 'Italy',
'Jamaica', 'Japan', 'Jordan', 'Kenya', 'Korea, Dem. Rep.',
'Korea, Rep.', 'Kuwait', 'Lebanon', 'Lesotho', 'Liberia', 'Libya',
'Madagascar', 'Malawi', 'Malaysia', 'Mali', 'Mauritania',
'Mauritius', 'Mexico', 'Mongolia', 'Montenegro', 'Morocco',
'Mozambique', 'Myanmar', 'Namibia', 'Nepal', 'Netherlands',
'New Zealand', 'Nicaragua', 'Niger', 'Nigeria', 'Norway', 'Oman',
'Pakistan', 'Panama', 'Paraguay', 'Peru', 'Philippines', 'Poland',
'Portugal', 'Puerto Rico', 'Reunion', 'Romania', 'Rwanda',
'Sao Tome and Principe', 'Saudi Arabia', 'Senegal', 'Serbia',
'Sierra Leone', 'Singapore', 'Slovak Republic', 'Slovenia',
'Somalia', 'South Africa', 'Spain', 'Sri Lanka', 'Sudan',
'Swaziland', 'Sweden', 'Switzerland', 'Syria', 'Taiwan',
'Tanzania', 'Thailand', 'Togo', 'Trinidad and Tobago', 'Tunisia',
'Turkey', 'Uganda', 'United Kingdom', 'United States', 'Uruguay',
'Venezuela', 'Vietnam', 'West Bank and Gaza', 'Yemen, Rep.',
'Zambia', 'Zimbabwe'], dtype=object)
我建议您使用 df['CODE'].unique()
等工具仔细查看您的数据集并告诉我们您的发现。
关于python - plotly 等值线在达到一定值后被切断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58508516/
我正在尝试开发右边框/Angular 具有特定 Angular (30°) 的表格。我见过一些类似的解决方案,但它们都无法在一定程度上发挥作用。如果我想从 30° 改变到 20°,我不想花太多力气。
我是一名优秀的程序员,十分优秀!