Description Usage Arguments Examples
View source: R/simpleDescribe.R
Create a table of descriptive statistics for a single numerical variable. This function is dplyr
friendly (accepts piping).
1 | simpleDescribe(df, oneVar, rnd = 3, range = FALSE)
|
df |
Dataframe of variable location. |
oneVar |
Variable of numerical nature. |
rnd |
Rounding of output table (data.frame). Defaults to 3. |
range |
Logical. Should the range of the variable be included along with Min and Max. |
1 2 3 | mtcars %>%
group_by(cyl) %>%
simpleDescribe(mpg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.