pyecharts/example/boxplot_example.py
2019-03-25 00:18:31 +08:00

13 lines
221 B
Python

# coding=utf-8
from pyecharts import options as opts
from pyecharts.charts import Boxplot, Page
from example.commons import Faker
charts = []
def collect_charts(fn):
charts.append((fn, fn.__name__))
return fn