Center and scale hyperSpec object
link[base]{scale}
s the spectra matrix. scale (x, scale = FALSE)
centers the data.
## S4 method for signature 'hyperSpec' scale(x, center = TRUE, scale = TRUE)
x |
the |
center |
if |
scale |
if |
Package scale
provides a fast alternative for base::scale
the centered & scaled hyperSpec
object
C. Beleites
package scale.
## mean center & variance scale tmp <- scale (chondro) plot (tmp, "spcmeansd") plot (sample (tmp, 5), add = TRUE, col = 2) ## mean center only tmp <- scale (chondro, scale = FALSE) plot (tmp, "spcmeansd") plot (sample (tmp, 5), add = TRUE, col = 2) ## custom center tmp <- sweep (chondro, 1, mean, `/`) plot (tmp, "spcmeansd") tmp <- scale (tmp, center = quantile (tmp, .05), scale = FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.