signifig {envalysis} | R Documentation |
Print significant figures
Description
This function reports the significant figures of a given mean
together
with its respective error
term (for instance confidence interval or
standard deviation).
Usage
signifig(x, error, data, style = "pm", na.digit = 2, ...)
Arguments
x |
a numeric vector or data frame object containing the averaged values. |
error |
a numeric vector or data frame object containing the respective error terms. |
data |
a data frame containing the specified columns. If empty, |
style |
a string specifying the output style to be used. The default
style |
na.digit |
an integer controlling to which significant digit the mean value should be rounded if the error is zero or no error data was provided. |
... |
arguments passed to |
Author(s)
Zacharias Steinmetz
References
Taylor, J.R. (1997). Error analysis: the study of uncertainties in physical measurements. University Science Books, Sausalito, CA.
Examples
signifig(c(0.28, 5, -31.6, 2.6, 2, NA, 27.1),
c(0.688, 0.8, 11.6, 9.6, NA, 1.6, 0))