柱状图、时间线柱状图可视化,并且自动循环播放。
实现代码:
from pyecharts.charts import Bar
from pyecharts.options import LabelOpts
bar = Bar() #创建对象
bar.add_xaxis(["中国","美国","英国"]) # x轴数据
bar.add_yaxis("GDP",[30,20,10],label_opts=LabelOpts(position="right")) # y轴数据
bar.reversal_axis()# 反转x、y轴
bar.render("基础柱状图.html") # 绘图
from pyecharts.charts import Bar,Timeline
from pyecharts.options import LabelOpts
from pyecharts.globals import ThemeType #时间线主题
不同时间有不同数据,所以需要多个柱状图对象。
bar1 = Bar()
bar1.add_xaxis(["中国","美国","英国"])
bar1.add_yaxis("GDP",[30,20,10],label_opts=LabelOpts(position="right"))
bar1.reversal_axis()# 反转x、y轴
bar2 = Bar()
bar2.add_xaxis(["中国","美国","英国"])
bar2.add_yaxis("GDP",[60,30,20],label_opts=LabelOpts(position="right"))
bar2.reversal_axis()# 反转x、y轴
bar3 = Bar()
bar3.add_xaxis(["中国","美国","英国"])
bar3.add_yaxis("GDP",[90,40,30],label_opts=LabelOpts(position="right"))
bar3.reversal_axis()# 反转x、y轴
timeline = Timeline({"theme":ThemeType.LIGHT})# 创建时间线对象并且设置主题
timeline.add(bar1,"点1")
timeline.add(bar2,"点2")
timeline.add(bar3,"点3")
timeline.add_schema(
play_interval=1000,# 自动播放时间间隔
is_timeline_show=True,# 是否自动播放时,显示时间线
is_auto_play=True,# 是否自动播放
is_loop_play=True# 是否循环播放
)
timeline.render("基础时间线图.html")
运行,打开.html文件即可。