Prediction: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
* [https://cran.r-project.org/web/packages/randomForest/ randomForest] package | * [https://cran.r-project.org/web/packages/randomForest/ randomForest] package | ||
** [https://stackoverflow.com/a/61114490 Error: protect(): protection stack overflow]. The trick works on my data with 26 obs and 28110 variables. | ** [https://stackoverflow.com/a/61114490 Error: protect(): protection stack overflow]. The trick works on my data with 26 obs and 28110 variables. | ||
** [https://www.listendata.com/2014/11/random-forest-with-r.html A complete guide to Random Forest in R] | |||
** [https://christophm.github.io/interpretable-ml-book/feature-importance.html 8.5 Permutation Feature Importance] from '''Interpretable Machine Learning''' by Christoph Molnar | |||
** [https://topepo.github.io/caret/variable-importance.html 15 Variable Importance] from '''caret''' | |||
** [https://www.linkedin.com/pulse/how-find-most-important-variables-r-amit-jain How to find the most important variables in R] | |||
* [https://link.springer.com/article/10.1186/1471-2105-7-3 Gene selection and classification of microarray data using random forest] 2006, and the R package [https://cran.r-project.org/web/packages/varSelRF/ varSelRF] | * [https://link.springer.com/article/10.1186/1471-2105-7-3 Gene selection and classification of microarray data using random forest] 2006, and the R package [https://cran.r-project.org/web/packages/varSelRF/ varSelRF] | ||
Revision as of 16:19, 7 October 2022
Random forest
- https://en.wikipedia.org/wiki/Random_forest
- randomForest package
- Error: protect(): protection stack overflow. The trick works on my data with 26 obs and 28110 variables.
- A complete guide to Random Forest in R
- 8.5 Permutation Feature Importance from Interpretable Machine Learning by Christoph Molnar
- 15 Variable Importance from caret
- How to find the most important variables in R
- Gene selection and classification of microarray data using random forest 2006, and the R package varSelRF