GPCA {RMAWGEN} | R Documentation |
This function makes a Gaussianization procedure based on PCA iteration ( see GPCA_iteration
)
Description
This function makes a Gaussianization procedure based on PCA iteration ( see GPCA_iteration
)
Usage
GPCA(x_prev, n = 30, extremes = TRUE)
Arguments
x_prev |
previous set of the random variable |
n |
number of reiterations |
extremes |
Value
A GPCA-class
S3 object returned by GPCA_iteration
at each iteration
and the final results of the G-PCA procedure (matrix final_results
)
Note
This function re-iterates the equation (1) of "PCA Gaussianization for One-Class Remote Sensing Image" by V. Laparra et al., http://www.uv.es/lapeva/papers/SPIE09_one_class.pdf,http://www.uv.es/vista/vistavalencia/papers/SPIE_09_Gaussianization_presentation.pdf
Author(s)
Emanuele Cordano
See Also
GPCA
,GPCA_iteration
,inv_GPCA_iteration
,inv_GPCA
,GPCA-class
for 'GPCA' S3 class
Examples
library(RMAWGEN)
set.seed(1222)
nIterations <- 30
N <- 20
x <- rexp(N)
y <- x+rnorm(N)
df <- data.frame(x=x,y=y)
GPCA <- GPCA(df,n=nIterations,extremes=TRUE)
x <- rnorm(N)
y <- x+rnorm(N)
dfn <- data.frame(x=x,y=y)
GPCAn <- GPCA(dfn,n=nIterations,extremes=TRUE)
[Package RMAWGEN version 1.3.7 Index]