Description Usage Arguments Value Examples
5-Number summary as character string
| 1 | str_comb_full(x, fun = median, digits = 2, delim = ",")
 | 
| x | Numeric Vector | 
| fun | Function for Central Measure (Defaults to median) | 
| digits | number of digits to round | 
| delim | delimiter of choice | 
Character String of the form fun(x) <delim> (Q1,Q3) [min,max]
| 1 2 3 4 5 | x = seq(1,100)
str_comb_full(x,digits = 3)
str_comb_full(x, lower = 0.1, upper = 0.85)
str_comb_full(x^2,fun = median, delim = " - ")
str_comb_full(x^2,fun = mean, delim = "_")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.