Description Usage Arguments Value Examples
This functions allows us to transform non-normal multivariate data to that of non paranormal data.
1 |
x |
The multivariate non-normal data to be transformed. |
npn_func |
Optional parameter - The method of transformation to be applied. Can either be "shrinkage" or "truncation" but defaults to "shrinkage". |
npn_thresh |
Optional parameter - The truncation threshold that is used when making use of truncation. |
verbose |
Optional parameter - Prints additional output of the selected approach. Can either be "TRUE" or "FALSE" and defaults to "TRUE". |
Returns the transformed data matrix.
1 2 3 | data <- data_generator(n = 100, p = 50, seed = 123)
X <- data$X
X_transformed <- npn(X, npn_func = "truncation")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.