pyecharts记录
pyecharts是一个用来绘制轮廓地图(即不需要道路等地图软件上的实例,只要国 省 区边界)的实用python库。
建议从github找到最新的官方文档,直接搜到的文档可能不是最新版本。
安装
pip install pyecharts
问题
有个关于label的坑,源自本人提的issue
其实设置了ooltip_opts=opts.TooltipOpts()
后,时间轴是没有underfined显示了,但是geo图上绘制的点的值显示好像自动做了个formatt,原因未知。
关于map图和geo图
map可以给每个省根据给定值上色,每个省有个色块,但不能根据经纬度标点。可以用于简单的地图展示。
geo图可以根据经纬度标点,有更多样化的选择。但是不能给省色块上色,只能把省设置为一个点表示来上色
分享我的代码
map图的
m = Map()
m.add(maptype="china",series_name='昆曲省热度',data_pair=data_pair,label_opts=opts.LabelOpts(is_show=False))
piece = [
{"min": 100000, "label": 'HOT(100000 以上)'},
{"min": 5000, "max": 100000},
{"min": 15000, "max": 50000},
{"min": 5000, "max": 15000},
{"min": 2000, "max": 5000},
{"min": 100, "max": 2000},
# {"value": 123, "label": '自定义值', "color": 'grey'},
]
m.set_global_opts(
title_opts=opts.TitleOpts(title="{}年".format(i)+'昆曲各省热度数据', subtitle="数据来源:from web"),
legend_opts=opts.LegendOpts(is_show=False),
visualmap_opts=opts.VisualMapOpts(max_=500000,is_piecewise=True,pieces=piece),
toolbox_opts=opts.ToolboxOpts(is_show=True,feature=opts.ToolBoxFeatureOpts(restore=opts.ToolBoxFeatureRestoreOpts(False),data_zoom=opts.ToolBoxFeatureDataZoomOpts(False),magic_type=opts.ToolBoxFeatureMagicTypeOpts(False),brush=opts.ToolBoxFeatureBrushOpts(False))),
tooltip_opts=opts.TooltipOpts(),
)
geo图的
g = Geo()
g.add_schema(maptype="china",label_opts=opts.LabelOpts(is_show=False),) # 改为true显示省名
for index, row in year_data.iterrows():
g.add_coordinate(row['地点'], row['经度'], row['纬度'])
g.add("昆曲剧院热度", data_pair,type_=GeoType.EFFECT_SCATTER, symbol_size=10)
piece = [
{"min": 100000, "label": 'HOT(100000 以上)'},
{"min": 50000, "max": 100000},
{"min": 30000, "max": 50000},
{"min": 10000, "max": 30000},
{"min": 5000, "max": 10000},
{"min": 500, "max": 5000},
{"min": 0, "max": 500},
# {"value": 123, "label": '自定义值', "color": 'grey'},
]
g.set_global_opts(
title_opts=opts.TitleOpts(title="{}年".format(i)+'昆曲各剧院热度数据', subtitle="数据来源:from web"),
legend_opts=opts.LegendOpts(is_show=False),
visualmap_opts=opts.VisualMapOpts(max_=500000, is_piecewise=True,pieces=piece),
toolbox_opts=opts.ToolboxOpts(is_show=True,feature=opts.ToolBoxFeatureOpts(restore=opts.ToolBoxFeatureRestoreOpts(False),data_zoom=opts.ToolBoxFeatureDataZoomOpts(False),magic_type=opts.ToolBoxFeatureMagicTypeOpts(False),brush=opts.ToolBoxFeatureBrushOpts(False))),
# tooltip_opts=opts.TooltipOpts(),
)