| data_to_boxplot | R Documentation | 
Helper to transform data frame for boxplot highcharts format
data_to_boxplot(
  data,
  variable,
  group_var = NULL,
  group_var2 = NULL,
  add_outliers = FALSE,
  ...
)
| data | The data frame containing variables. | 
| variable | The variable to calculate the box plot data. | 
| group_var | A variable to split calculation | 
| group_var2 | A second variable to create separate series. | 
| add_outliers | A logical value indicating if outliers series should
be calculated. Default to  | 
| ... | Arguments defined in https://api.highcharts.com/highcharts/plotOptions.series. | 
data(pokemon)
dat <- data_to_boxplot(pokemon, height)
highchart() |>
  hc_xAxis(type = "category") |>
  hc_add_series_list(dat)
dat <- data_to_boxplot(pokemon, height, type_1, name = "height in meters")
highchart() |>
  hc_xAxis(type = "category") |>
  hc_add_series_list(dat)
## Not run: 
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.