makeFeatureSpaceOperations: Make operation config object to build feature spaces
Description
makeFeatureSpaceOperations create config object for datasample
Usage
makeFeatureSpaceOperations(
pca = F,
pca.nb.dims = 0,
spectral = F,
sampling = F,
sampling.size.max = 0,
scaling = F
)
Arguments
pca
boolean: if TRUE, Principal Components Analysis is applied to reduce the data space.
pca.nb.dims
number of principal components kept. If pca.nb.dims=0, this number is computed automatically.
spectral
boolean: if TRUE, spectral embedding is applied to reduce the data space.
sampling
boolean: if TRUE, data sampling is used.
sampling.size.max
: maximum size of the sampled dataframe.
scaling
boolean: if TRUE, scaling is applied.
Value
configuration object created from parameters.
Examples
Run this code# NOT RUN {
operations <- makeFeatureSpaceOperations(pca=TRUE)
# }
Run the code above in your browser using DataLab