fmt_mean_sd: Formatted mean and standard deviation
Description
A function to calculate and format a mean and standard deviation.
Usage
fmt_mean_sd(x, format = "%.1f")
Arguments
x
The input data vector or data frame column.
format
A formatting string suitable for input into the
sprintf function. By default, this format is
defined as "%.1f", which displays the mean and standard deviation with
one decimal place.
Value
The formatted mean and standard deviation.
Details
This function calculates a mean and standard deviation, and formats using
sprintf.
You may control the format using the format parameter.
Function will ignore NA values in the input data. Results are
returned as a character vector.