df = pd.read_excel('2023各省高考人数.xlsx')2.1 底图
def get_map():
my_map = (
Map(init_opts=opts.InitOpts(width='1000px', height='800px',bg_color='#000000'))
.add('',
[list(z) for z in zip(x_data, y_data)],
maptype='china',
)
.set_global_opts(
title_opts=opts.TitleOpts(
title='考出河南!全国各地区高考难度地图',
pos_top='2%',pos_left="center",
title_textstyle_opts=opts.TextStyleOpts(color='#FAFAFA',font_size=28),
),
)
)
2.2 添加热图分组
visualmap_opts=opts.VisualMapOpts(
is_show=True,
is_piecewise=True,
split_number = 6,
max_=130
)children=[
opts.GraphicText(
graphic_item=opts.GraphicItem(left="center", top="middle", z=100),
graphic_textstyle_opts=opts.GraphicTextStyleOpts(
text_align='right',
text='-- 制图@公众号:Python当打之年 --',
font="14px bold",
graphic_basicstyle_opts=opts.GraphicBasicStyleOpts(fill='#fff'),
),
),
]
以上就是Python高考 | 考出河南!全国各地区高考难度地图的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号