signifNumeric | R Documentation |
This function applies link{signif}
(or possibly other rounding function) to numeric, non-integer
columns of a given data frame.
signifNumeric(x, digits, fnc = "signif")
x |
Input data frame, matrix or matrix-like object that can be coerced to a data frame. |
digits |
Significant digits to retain. |
fnc |
The rounding function. Typically either |
The function fnc
is applied to each numeric column that contains at least one non-integer (i.e., at
least one element that does not equal its own round
).
The transformed data frame.
Peter Langfelder
The rounding functions signif
and round
.
df = data.frame(text = letters[1:3], ints = c(1:3)+234, nonints = c(0:2) + 0.02345);
df;
signifNumeric(df, 2);
signifNumeric(df, 2, fnc = "round");
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.