在 plotly/python 的气泡图中看不到气泡

unable to see bubbles in bubble map of plotly/python

我正在研究来自 kaggle 的拉面评分数据集

我想查看 reviews/country 使用 scatter_geo 来自 plotly

的传播

我的代码:

country_count = df['Country'].value_counts()
import plotly.express as px
fig = px.scatter_geo(country_count, locations = country_count.index, size = country_count)
fig.show()

给了我这个:

请帮忙

由于 scatter_geo 函数的 locatioinmode 参数的默认设置,完整的散点图是不可见的。当位置是国家名称时,它可以更改为 country name。修改后的代码如下:

import pandas as pd
import numpy as np
import plotly.express as px
import pycountry

df = pd.read_csv('ramen-ratings.csv')
country_count = df['Country'].value_counts()
country_count = country_count.reset_index().rename(columns={'index':'Country', 'Country':'Count'})
fig = px.scatter_geo(country_count, locations='Country', locationmode='country names', size='Count')
fig.show()

得到的图如下:

可在此处访问完整文档:https://plotly.com/python-api-reference/generated/plotly.express.scatter_geo.html