View source: R/RobustNorm_BackTrafo.R
| RobustNorm_BackTrafo | R Documentation | 
Transforms the Robust Normalization back if Capped=FALSE
RobustNorm_BackTrafo(TransformedData,
MinX,Denom,Center=0)
| TransformedData | [1:n,1:d] matrix | 
| MinX | scalar | 
| Denom | scalar | 
| Center | scalar | 
For details see RobustNormalization
[1:n,1:d] Data matrix
Michael Thrun
RobustNormalization
data(Hepta)
Data = Hepta$Data
TransList = RobustNormalization(Data, Centered = TRUE, WithBackTransformation = TRUE)
HeptaData = RobustNorm_BackTrafo(TransList$TransformedData,
                                 TransList$MinX,
                                 TransList$Denom,
                                 TransList$Center)
sum(HeptaData - Data) #<e-15
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.