-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ModelOriented:master' into tree-depth-faster
- Loading branch information
Showing
50 changed files
with
2,389 additions
and
3,385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: randomForestExplainer | ||
Title: Explaining and Visualizing Random Forests in Terms of Variable Importance | ||
Version: 0.10.1 | ||
Version: 0.10.2 | ||
Authors@R: c( | ||
person("Aleksandra", "Paluszynska", email = "[email protected]", role = c("aut")), | ||
person("Przemyslaw", "Biecek", email = "[email protected]", role = c("aut","ths")), | ||
|
@@ -10,22 +10,24 @@ Description: A set of tools to help explain which variables are most important i | |
Depends: R (>= 3.0) | ||
License: GPL | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Imports: | ||
data.table (>= 1.10.4), | ||
dplyr (>= 0.7.1), | ||
DT (>= 0.2), | ||
GGally (>= 1.3.0), | ||
ggplot2 (>= 2.2.1), | ||
ggplot2 (>= 3.4.0), | ||
ggrepel (>= 0.6.5), | ||
randomForest (>= 4.6.12), | ||
ranger(>= 0.9.0), | ||
reshape2 (>= 1.4.2), | ||
rmarkdown (>= 1.5) | ||
rlang, | ||
rmarkdown (>= 1.5), | ||
tidyr | ||
Suggests: | ||
knitr, | ||
MASS (>= 7.3.47), | ||
testthat | ||
VignetteBuilder: knitr | ||
RoxygenNote: 7.1.0 | ||
RoxygenNote: 7.3.0 | ||
URL: https://github.com/ModelOriented/randomForestExplainer, https://modeloriented.github.io/randomForestExplainer/ | ||
Config/testthat/edition: 3 | ||
Config/Needs/website: ModelOriented/DrWhyTemplate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
# randomForestExplainer 0.10.2 | ||
|
||
* Remove dependency on reshape2 in favour of tidyr (@olivroy, #33) | ||
|
||
* Silence deprecation warnings from ggplot2 and dplyr (@olivroy, #29) | ||
|
||
* Use testthat 3rd edition. (@olivroy, #33) | ||
|
||
# randomForestExplainer 0.10.1 | ||
|
||
* Small tweaks to `explain_forest()`. | ||
|
||
# randomForestExplainer 0.10.0 | ||
|
||
## New features | ||
* Added support for ranger forests. | ||
* Added support for unsupervised randomForest. | ||
* Added tests for most functions. | ||
|
||
## Bug fixes | ||
* Fixed bug for explain_forest not finding templates. | ||
* Added more intuitive error message for explain_forest when local importance is absent. | ||
* Fixed bug for `explain_forest()` not finding templates. | ||
* Added more intuitive error message for `explain_forest()` when local `importance` is absent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.