pyecharts绘制'2020年全球癌症新发人数前十名的国家'世界地图
时间: 2023-06-09 16:07:39 浏览: 84
好的,您可以使用以下代码使用pyecharts绘制'2020年全球癌症新发人数前十名的国家'世界地图:
```python
from pyecharts.charts import Map
import pyecharts.options as opts
country = ['中国', '印度', '美国', '俄罗斯', '法国', '日本', '英国', '德国', '韩国', '巴西']
num = [4719300, 2662390, 1769730, 1150570, 385450, 1086030, 364380, 460270, 321860, 606890]
map_chart = (
Map()
.add("新发癌症人数", [list(z) for z in zip(country, num)], "world")
.set_series_opts(label_opts=opts.LabelOpts(is_show=False))
.set_global_opts(
title_opts=opts.TitleOpts(title="2020年全球癌症新发人数前十名的国家"),
visualmap_opts=opts.VisualMapOpts(max_=5000000),
)
)
map_chart.render("cancer_map.html")
```
其中,`country`为国家列表,`num`为新发癌症人数列表。运行代码后,将生成一个名为`cancer_map.html`的html文件,可以在浏览器中打开查看结果。
阅读全文