signifNumeric: Round numeric columns to given significant digits.
Description
This function applies link{signif} (or possibly other rounding function) to numeric, non-integer
columns of a given data frame.
Usage
signifNumeric(x, digits, fnc = "signif")
Value
The transformed data frame.
Arguments
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 signif or round.
Author
Peter Langfelder
Details
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).