我正在尝试使用 Plotly 在 python 中创建地图图形,但我的数据未被导入或无法正常工作

I am trying to create a map figure in python using Plotly but my data is not being imported or it is not properly working

enter image description here

我正在尝试从 .csv 文件中获取多个数据,但它不起作用。 我尝试使用仅包含 iso_alpha 列的 .csv 文件,并且该文件正在运行。 我怎样才能显示我的所有数据?

您需要为csv文件设置分隔符

data = pd.read_csv('https://raw.githubusercontent.com/Lys4nder/SchoolDataset/main/data_project_full.csv', sep=';')