hc_add_series_boxplot {highcharter} | R Documentation |
Shorcut for create boxplot
hc_add_series_boxplot(hc, x, by = NULL, outliers = TRUE, ...)
hc |
A |
x |
A numerci vector |
by |
A string vector same length of |
outliers |
A boolean value to show or not the outliers |
... |
Aditional arguments for the data series (http://api.highcharts.com/highcharts#series). |
## Not run: highchart() %>% hc_add_series_boxplot(x = iris$Sepal.Length, by = iris$Species, name = "length") ## End(Not run)