Gives count, mean, standard deviation, standard error of the mean, and confidence interval (default 95%).
run_summarySE(
data,
measurevar,
groupvars = NULL,
na.rm = FALSE,
conf.interval = 0.95,
.drop = TRUE
)
(Required). a data frame.
(Required). character. the name of a column that contains the variable to be summariezed.
(Required). vector. a vector containing names of columns that contain grouping variables.
(Required). logical. a boolean that indicates whether to ignore NA's (default: FALSE).
(Required). numeric. the percent range of the confidence interval (default: 0.95).
(Required). logical. should combinations of variables that do not appear in the input data be preserved (FALSE) or dropped (default: TRUE).
a data frame with count, mean, standard deviation, standard error of the mean, and confidence interval (default 95%).
https://github.com/cran/Rmisc/