与 plotly 一起使用的位置模式列表
List of locationmode to use with plotly
我需要对在我的国家巴西分布的数据进行图形表示。
我发现plotly
可以做这个工作,但是当我去研究如何使用plotly时,每个教程都在使用locationmode
属性作为'USA-states'。
是否有包含国家代码的列表,我可以去看看哪个是正确的调用方式?
来自文档:https://plot.ly/python/reference/#scattergeo-locationmode
locationmode ( enumerated : "ISO-3" | "USA-states" | "country names" )
default: "ISO-3"
Determines the set of locations used to match entries in `locations` to regions on the map.
因此对于巴西,您必须添加以下行:
locations = ["Brazil"],
locationmode = 'country names'
我需要对在我的国家巴西分布的数据进行图形表示。
我发现plotly
可以做这个工作,但是当我去研究如何使用plotly时,每个教程都在使用locationmode
属性作为'USA-states'。
是否有包含国家代码的列表,我可以去看看哪个是正确的调用方式?
来自文档:https://plot.ly/python/reference/#scattergeo-locationmode
locationmode ( enumerated : "ISO-3" | "USA-states" | "country names" )
default: "ISO-3"
Determines the set of locations used to match entries in `locations` to regions on the map.
因此对于巴西,您必须添加以下行:
locations = ["Brazil"],
locationmode = 'country names'