scaleData {ifultools} | R Documentation |
Scales the input data via a selected logarithmic function.
scaleData(x, scale.="linear")
x |
an object that inherits from the numeric class, typically a scalar , vector , or matrix . |
scale. |
a character string defining the type of scaling to perform.
Choices are "linear" ,"log2" ,"log10" ,"log" or "db" . Default: "linear" (no scaling). |
the scaled data is returned with an attribute "scalestr"
attached, which defines
the scaling treatment used on the input data.
scaleData(c(1,10,100,1000),scale="db")