data_to_boxplot: Helper to transform data frame for boxplot highcharts format

Description Usage Arguments Examples

View source: R/data-helpers.R

Description

Helper to transform data frame for boxplot highcharts format

Usage

1
2
3
4
5
6
7
8
data_to_boxplot(
  data,
  variable,
  group_var = NULL,
  group_var2 = NULL,
  add_outliers = FALSE,
  ...
)

Arguments

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 FALSE.

...

Arguments defined in https://api.highcharts.com/highcharts/plotOptions.series.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
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)

highcharter documentation built on Jan. 3, 2022, 5:08 p.m.