mllite/caret2sql

Implementation Process - Data Preprocessing - ICA method

antoinecarme opened this issue · 1 comments

Add FastICA pre-processing method (Independent Component Analysis)

As described in issue #2

    model  <- preProcess(iris[, -5], method = c("ica"), n.comp=3)

References :

https://www.rdocumentation.org/packages/caret/versions/6.0-80/topics/preProcess

Added data preprocessing with ICA method.