Skip to content

Commit 08b35f9

Browse files
Update README.md
1 parent cfee810 commit 08b35f9

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
# randomForestExplainer
22

3-
Set of tools to understand what is happening inside a Random Forest. A detailed discussion of the package and importance measures it implements can be found here: [Master thesis on randomForestExplainer](https://rawgit.com/geneticsMiNIng/BlackBoxOpener/master/randomForestExplainer_Master_thesis.pdf).
3+
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/randomForestExplainer)](https://cran.r-project.org/package=factorMerger)
4+
[![Pending Pull-Requests](http://githubbadges.herokuapp.com/MI2DataLab/randomForestExplainer/pulls.svg)](https://github.com/MI2DataLab/randomForestExplainer/pulls)
5+
[![Github Issues](http://githubbadges.herokuapp.com/MI2DataLab/randomForestExplainer/issues.svg)](https://github.com/MI2DataLab/randomForestExplainer/issues)
6+
7+
A set of tools to understand what is happening inside a Random Forest. A detailed discussion of the package and importance measures it implements can be found here: [Master thesis on randomForestExplainer](https://rawgit.com/geneticsMiNIng/BlackBoxOpener/master/randomForestExplainer_Master_thesis.pdf).
48

59
## Instalation
610

11+
randomForestExplainer can be installed from [CRAN](https://cran.r-project.org/package=randomForestExplainer) as follows:
12+
13+
```{r}
14+
install.packages("randomForestExplainer")
715
```
16+
17+
To install and load the latest version of `https://cran.r-project.org/package=randomForestExplainer` from **Github** run:
18+
19+
```{r}
20+
if (!require(devtools)) install.packages("devtools")
821
devtools::install_github("MI2DataLab/randomForestExplainer")
22+
23+
library(randomForestExplainer)
924
```
1025

1126
## Vignette

0 commit comments

Comments
 (0)