unitVarianceScaling | R Documentation |
This function performs scaling of binned data to unit variance so that each bin has variance 1 and mean 0. This is rarely necessary, but might be advantageous, e.g. in artificial neural networks.
unitVarianceScaling(mrbinResults, verbose = TRUE, errorsAsWarnings = FALSE)
mrbinResults |
An mrbin object |
verbose |
Should a summary be printed? |
errorsAsWarnings |
If TRUE, errors will be turned into warnings. Should be used with care, as errors indicate undocumented changes to the data. |
An invisible mrbin object containing scaled NMR data.
mrbinResults<-mrbin(silent=TRUE,setDefault=TRUE,parameters=list(dimension="1D",
binwidth1D=0.05,PQNScaling="No",PCA="No",tryParallel=TRUE,logTrafo="No",
NMRfolders=c(system.file("extdata/1/10/pdata/10",package="mrbin"),
system.file("extdata/2/10/pdata/10",package="mrbin"),
system.file("extdata/3/10/pdata/10",package="mrbin"))))
mrbinResults<-unitVarianceScaling(mrbinResults)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.