New viz: box plot (#312)

* add box plot

* changes for linters
This commit is contained in:
andrewhn
2016-04-11 09:15:25 +10:00
committed by Maxime Beauchemin
parent dab31eb66d
commit fe045ad076
5 changed files with 142 additions and 0 deletions

View File

@@ -263,6 +263,18 @@ def load_world_bank_health_n_pop():
until="now",
viz_type='area',
groupby=["region"],)),
Slice(
slice_name="Box plot",
viz_type='box_plot',
datasource_type='table',
table=tbl,
params=get_slice_json(
defaults,
since="1960-01-01",
until="now",
whisker_options="Tukey",
viz_type='box_plot',
groupby=["region"],)),
]
for slc in slices:
merge_slice(slc)