You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
409 B
14 lines
409 B
|
|
import pyecharts
|
|
|
|
print(pyecharts.__version__)
|
|
|
|
from pyecharts.charts import Bar
|
|
|
|
bar = Bar()
|
|
bar.add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"])
|
|
bar.add_yaxis("商家A", [5, 20, 36, 10, 75, 90])
|
|
# render 会生成本地 HTML 文件,默认会在当前目录生成 render.html 文件
|
|
# 也可以传入路径参数,如 bar.render("mycharts.html")
|
|
bar.render()
|