Transforms the Robust Normalization back
Transforms the Robust Normalization back if Capped=FALSE
RobustNorm_BackTrafo(TransformedData, MinX,Denom,Center=0)
TransformedData
: [1:n,1:d] matrixMinX
: scalarDenom
: scalarCenter
: scalarFor 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