summary_se: Give a summary of a data frame (Deprecated)

View source: R/summary_se.R

summary_seR Documentation

Give a summary of a data frame (Deprecated)

Description

Gives count, mean, standard deviation, standard error of the mean, and confidence interval (default 0.95).

Usage

summary_se(
  data = NULL,
  measurevar,
  groupvars = NULL,
  na.rm = FALSE,
  conf.interval = 0.95,
  .drop = TRUE
)

Arguments

data

data frame

measurevar

the name of a column that contains the variable to be summariezed

groupvars

a vector containing names of columns that contain grouping variables

na.rm

a boolean that indicates whether to ignore NA's

conf.interval

the percent range of the confidence interval (default is 0.95)

.drop

should empty fields be dropped

Value

Data frame with count, mean, standard devation, standard error of the mean and confidence interval.

Author(s)

Rico Derks

References

www.cookbook-r.com


ricoderks/Rcpm documentation built on May 18, 2022, 7:49 a.m.