ds_group_summary {descriptr} | R Documentation |
Groupwise descriptive statistics
Description
Descriptive statistics of a continuous variable for the different levels of
a categorical variable. boxplot.group_summary()
creates boxplots of
the continuous variable for the different levels of the categorical variable.
Usage
ds_group_summary(data, gvar, cvar)
## S3 method for class 'ds_group_summary'
plot(x, print_plot = TRUE, ...)
Arguments
data |
A |
gvar |
Column in |
cvar |
Column in |
x |
An object of the class |
print_plot |
logical; if |
... |
Further arguments to be passed to or from methods. |
Value
ds_group_summary()
returns an object of class "ds_group_summary"
.
An object of class "ds_group_summary"
is a list containing the
following components:
stats |
A data frame containing descriptive statistics for the different levels of the factor variable. |
tidy_stats |
A tibble containing descriptive statistics for the different levels of the factor variable. |
plotdata |
Data for boxplot method. |
See Also
Examples
# ds_group summary
ds_group_summary(mtcarz, cyl, mpg)
# boxplot
k <- ds_group_summary(mtcarz, cyl, mpg)
plot(k)
# tibble
k$tidy_stats