Skip to content

Commit 17f93b3

Browse files
authored
docs: fix links to extralearner package in readme
2 parents e032e59 + c37c17e commit 17f93b3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ tab = as.data.table(mlr_learners)
9696
tab[sapply(properties, is.element, el = "importance"), key]
9797
```
9898

99-
If your learner is not listed here but capable of extracting variable importance from the fitted model, the reason is most likely that it is not yet integrated in the package [mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra learner organization](https://github.com/mlr3learners).
99+
If your learner is not listed here but capable of extracting variable importance from the fitted model, the reason is most likely that it is not yet integrated in the package [mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra learner extension](https://github.com/mlr-org/mlr3extralearners).
100100
Please open an issue so we can add your package.
101101

102102
Some learners need to have their variable importance measure "activated" during learner creation.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ head(as.data.table(filter$calculate(task)))
6666
|:------------------|:---------------------------------------------------------|:---------------|:---------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------|
6767
| anova | ANOVA F-Test | Classif | Integer, Numeric | stats |
6868
| auc | Area Under the ROC Curve Score | Classif | Integer, Numeric | [mlr3measures](https://cran.r-project.org/package=mlr3measures) |
69-
| carscore | Correlation-Adjusted coRrelation Score | Regr | Numeric | [care](https://cran.r-project.org/package=care) |
69+
| carscore | Correlation-Adjusted coRrelation Score | Regr | Logical, Integer, Numeric | [care](https://cran.r-project.org/package=care) |
7070
| carsurvscore | Correlation-Adjusted coRrelation Survival Score | Surv | Integer, Numeric | [carSurv](https://cran.r-project.org/package=carSurv), [mlr3proba](https://cran.r-project.org/package=mlr3proba) |
7171
| cmim | Minimal Conditional Mutual Information Maximization | Classif & Regr | Integer, Numeric, Factor, Ordered | [praznik](https://cran.r-project.org/package=praznik) |
7272
| correlation | Correlation | Regr | Integer, Numeric | stats |
@@ -99,8 +99,8 @@ If your learner is not listed here but capable of extracting variable
9999
importance from the fitted model, the reason is most likely that it is
100100
not yet integrated in the package
101101
[mlr3learners](https://github.com/mlr-org/mlr3learners) or the [extra
102-
learner organization](https://github.com/mlr3learners). Please open an
103-
issue so we can add your package.
102+
learner extension](https://github.com/mlr-org/mlr3extralearners).
103+
Please open an issue so we can add your package.
104104

105105
Some learners need to have their variable importance measure “activated”
106106
during learner creation. For example, to use the “impurity” measure of
@@ -116,10 +116,10 @@ filter$calculate(task)
116116
head(as.data.table(filter), 3)
117117
```
118118

119-
## feature score
120-
## 1: Petal.Length 43.19847
121-
## 2: Petal.Width 43.11627
122-
## 3: Sepal.Length 10.62848
119+
## feature score
120+
## 1: Petal.Length 44.682462
121+
## 2: Petal.Width 43.113031
122+
## 3: Sepal.Length 9.039099
123123

124124
### Performance Filter
125125

0 commit comments

Comments
 (0)