You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks for the package, I've been using it a lot in my work.
I came up to something strange. I know Boruta selects everything that is important.
I have a dataframe of 200 observations and 2000 features. if I shuffle the order of the features in the dataframe, Boruta (Random forrest classifier) will return different important features.
Also if I have 200 observations with first 1000 features Boruta selects a list of n-important features. But If I add another 1000 to the mix Boruta will select another set of features and the features from the first 1000 group won't be in them.
So why is Boruta always selecting different features if it should always select the best ones? How can best features change if you change the order of columns.
The text was updated successfully, but these errors were encountered:
Try setting a random state seed (random_state), and the results should be consistent across runs, even if you change the order of the features. For the second questions, I think it's to be expected that adding data could lead to different results.
First of all thanks for the package, I've been using it a lot in my work.
I came up to something strange. I know Boruta selects everything that is important.
I have a dataframe of 200 observations and 2000 features. if I shuffle the order of the features in the dataframe, Boruta (Random forrest classifier) will return different important features.
Also if I have 200 observations with first 1000 features Boruta selects a list of n-important features. But If I add another 1000 to the mix Boruta will select another set of features and the features from the first 1000 group won't be in them.
So why is Boruta always selecting different features if it should always select the best ones? How can best features change if you change the order of columns.
The text was updated successfully, but these errors were encountered: