【Pyecharts-学习笔记系列之Pie(一)】

from pyecharts import options as opts
from pyecharts.charts import Pie

c = (
    Pie(init_opts=opts.InitOpts(width="1600px",height="1000px",
        animation_opts=opts.AnimationOpts(animation_delay=10, animation_easing="elasticOut"),)
    )
    .add_dataset(
        source=[
            ["product", "2012", "2013", "2014", "2015", "2016", "2017"],
            ["Matcha Latte", 41.1, 30.4, 65.1, 53.3, 83.8, 98.7],
            ["Milk Tea", 86.5, 92.1, 85.7, 83.1, 73.4, 55.1],
            ["Cheese Cocoa", 24.1, 67.2, 79.5, 86.4, 65.2, 82.5],
            ["Walnut Brownie", 55.2, 67.1, 69.2, 72.4, 53.9, 39.1],
        ]
    )
    .add(
        series_name="2012年数据",
        data_pair=[],
        radius=60,
        center=["17%","30%"],
        encode={"itemName":"product","value":"2012"},
    )
    .add(
        series_name="2013年数据",
        data_pair=[],
        radius=60,
        center=["50%", "30%"],
        encode={"itemName":"product","value":"2013"},
    )
    .add(
        series_name="2014年数据",
        data_pair=[],
        radius=60,
        center=["80%", "30%"],
        encode={"itemName":"product","value":"2014"},
    )
    .add(
        series_name="2015年数据",
        data_pair=[],
        radius=60,
        center=["17%", "75%"],
        encode={"itemName":"product","value":"2015"},
    )
    .add(
        series_name="2016年数据",
        data_pair=[],
        radius=60,
        center=["50%", "75%"],
        encode={"itemName":"product","value":"2016"},
    )
    .add(
        series_name="2017年数据",
        data_pair=[],
        radius=60,
        center=["80%", "75%"],
        encode={"itemName":"product","value":"2017"},
    )
    .set_global_opts(        
        title_opts=opts.TitleOpts(title="Dataset simple pie example"),
        legend_opts=opts.LegendOpts(pos_left="30%", pos_top="5%"),
    )
    .render("dataset_pie_2.html")
    )

效果如图:
在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值