Learn R Programming

wrappedtools (version 0.9.7)

meansd: Compute mean and sd and put together with the ± symbol.

Description

Compute mean and sd and put together with the ± symbol.

Usage

meansd(
  x,
  roundDig = 2,
  drop0 = FALSE,
  groupvar = NULL,
  range = FALSE,
  rangesep = " ",
  add_n = FALSE,
  .german = FALSE
)

Value

character vector with mean ± SD, rounded to desired precision

Arguments

x

Data for computation.

roundDig

Number of relevant digits for roundR.

drop0

Should trailing zeros be dropped?

groupvar

Optional grouping variable for subgroups.

range

Should min and max be included in output?

rangesep

How should min/max be separated from mean+-sd?

add_n

Should n be included in output?

.german

logical, should "." and "," be used as bigmark and decimal?

Examples

Run this code
# basic usage of meansd
meansd(x = mtcars$wt)
# with additional options
meansd(x = mtcars$wt, groupvar = mtcars$am, add_n = TRUE)

Run the code above in your browser using DataLab