Implementation Process - Data Preprocessing - ICA method
antoinecarme opened this issue · 1 comments
antoinecarme commented
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
antoinecarme commented
Added data preprocessing with ICA method.