EVOLUTION-MANAGER
Edit File: data_to_boxplot.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Helper to transform data frame for boxplot highcharts format</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for data_to_boxplot {highcharter}"><tr><td>data_to_boxplot {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Helper to transform data frame for boxplot highcharts format</h2> <h3>Description</h3> <p>Helper to transform data frame for boxplot highcharts format </p> <h3>Usage</h3> <pre> data_to_boxplot( data, variable, group_var = NULL, group_var2 = NULL, add_outliers = FALSE, ... ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>data</code></td> <td> <p>The data frame containing variables.</p> </td></tr> <tr valign="top"><td><code>variable</code></td> <td> <p>The variable to calculate the box plot data.</p> </td></tr> <tr valign="top"><td><code>group_var</code></td> <td> <p>A variable to split calculation</p> </td></tr> <tr valign="top"><td><code>group_var2</code></td> <td> <p>A second variable to create separate series.</p> </td></tr> <tr valign="top"><td><code>add_outliers</code></td> <td> <p>A logical value indicating if outliers series should be calculated. Default to <code>FALSE</code>.</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Arguments defined in <a href="https://api.highcharts.com/highcharts/plotOptions.series">https://api.highcharts.com/highcharts/plotOptions.series</a>.</p> </td></tr> </table> <h3>Examples</h3> <pre> 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) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>