0
votes
1answer
115 views

Feature selection with Caret for data with more than one target

I am trying to do some feature selection, having around 3500 variables for about 200 samples. To each sample is associated two numerical values (the expected outcome). I can't manage to make the caret ...
1
vote
2answers
241 views

Feature selection using caret + repeatedcv

I am using caret and repeatedcv with repeats for feature selection. That is, ...
0
votes
0answers
95 views

Caret and Boruta: exact effect of 'ntree' parameter while calling train() function

I am planning to perform all-relevant feature selection using Boruta R-package. I was also happy to find a nice wrapper for doing this with a simultaneous mtry parameter adjustment implemented in ...
4
votes
0answers
338 views

Feature selection and parameter tuning with caret for random forest

I have data with a few thousand features and I want to do recursive feature selection (RFE) to remove uninformative ones. I do this with caret and RFE. However, I started thinking, if I want to get ...
2
votes
1answer
766 views

R knn variable selection

I have a data set that's 200k rows X 50 columns. I'm trying to use a knn model on it but there is huge variance in performance depending on which variables are ...