-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from ModelOriented/remove-factor-predictions
Remove factor predictions
- Loading branch information
Showing
11 changed files
with
33 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
^pkgdown/_pkgdown\.yml$ | ||
^\.github$ | ||
^revdep$ | ||
^compare_with_python.R$ |
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,11 @@ | ||
Package: kernelshap | ||
Title: Kernel SHAP | ||
Version: 0.5.1 | ||
Version: 0.6.0 | ||
Authors@R: c( | ||
person("Michael", "Mayer", , "[email protected]", role = c("aut", "cre")), | ||
person("David", "Watson", , "[email protected]", role = "aut"), | ||
person("Michael", "Mayer", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-6148-5756")), | ||
person("David", "Watson", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0001-9632-2159")), | ||
person("Przemyslaw", "Biecek", , "[email protected]", role = "ctb", | ||
comment = c(ORCID = "0000-0001-8423-1823")) | ||
) | ||
|
@@ -22,6 +24,7 @@ Roxygen: list(markdown = TRUE) | |
RoxygenNote: 7.3.1 | ||
Imports: | ||
foreach, | ||
MASS, | ||
stats, | ||
utils | ||
Suggests: | ||
|
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
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
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 |
---|---|---|
|
@@ -15,15 +15,15 @@ library(usethis) | |
use_description( | ||
fields = list( | ||
Title = "Kernel SHAP", | ||
Version = "0.5.1", | ||
Version = "0.6.0", | ||
Description = "Efficient implementation of Kernel SHAP, see Lundberg and Lee (2017), | ||
and Covert and Lee (2021) <http://proceedings.mlr.press/v130/covert21a>. | ||
Furthermore, for up to 14 features, exact permutation SHAP values can be calculated. | ||
The package plays well together with meta-learning packages like 'tidymodels', 'caret' or 'mlr3'. | ||
Visualizations can be done using the R package 'shapviz'.", | ||
`Authors@R` = | ||
"c(person('Michael', family='Mayer', role=c('aut', 'cre'), email='[email protected]'), | ||
person('David', family='Watson', role='aut', email='[email protected]'), | ||
"c(person('Michael', family='Mayer', role=c('aut', 'cre'), email='[email protected]', comment=c(ORCID='0000-0002-6148-5756')), | ||
person('David', family='Watson', role='aut', email='[email protected]', comment=c(ORCID='0000-0001-9632-2159')), | ||
person('Przemyslaw', family='Biecek', email='[email protected]', role='ctb', comment=c(ORCID='0000-0001-8423-1823')) | ||
)", | ||
Depends = "R (>= 3.2.0)", | ||
|
@@ -32,9 +32,10 @@ use_description( | |
roxygen = TRUE | ||
) | ||
|
||
use_package("foreach", "Imports") | ||
use_package("MASS", "Imports") | ||
use_package("stats", "Imports") | ||
use_package("utils", "Imports") | ||
use_package("foreach", "Imports") | ||
|
||
use_package("doFuture", "Suggests") | ||
|
||
|
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
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