Perform Principal Component Analysis
Arguments
- data
data.frame or data.table
- num_comp
integer(1). The number of components to retain as new predictors. If
threshold
is defined,num_comp
will be overridden.- threshold
numeric(1). A fraction of the total variance that should be covered by the components.
- kernel
logical(1). Whether to use a kernel PCA with
recipes::step_kpca()
. Default isFALSE
.