Skip to content

Commit b6db512

Browse files
committed
compatibility: mlr3 0.22.0
1 parent a43d4e3 commit b6db512

7 files changed

+43
-39
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Config/testthat/edition: 3
5050
Encoding: UTF-8
5151
NeedsCompilation: no
5252
Roxygen: list(markdown = TRUE, r6 = TRUE)
53-
RoxygenNote: 7.3.1
53+
RoxygenNote: 7.3.2
5454
Collate:
5555
'Filter.R'
5656
'mlr_filters.R'

NEWS.md

+34-32
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,73 @@
11
# mlr3filters (development version)
22

3+
* compatibility: mlr3 0.22.0
4+
35
# mlr3filters 0.8.0
46

5-
- Added `FilterBoruta`
6-
- Fixed issue with `FilterPerformance` where the arg `measure` wasn't passed on
7-
- Added `FilterUnivariateCox` (thanks to @bblodfon)
8-
- Parameter value `na.rm` is properly initialized to `TRUE` (thanks to @bblodfon)
9-
- Bugfix: property `missings` is now set correctly for `FilterFindCorrelation`
10-
- Bugfix: `$hash` now works for `Filter`s
7+
* Added `FilterBoruta`
8+
* Fixed issue with `FilterPerformance` where the arg `measure` wasn't passed on
9+
* Added `FilterUnivariateCox` (thanks to @bblodfon)
10+
* Parameter value `na.rm` is properly initialized to `TRUE` (thanks to @bblodfon)
11+
* Bugfix: property `missings` is now set correctly for `FilterFindCorrelation`
12+
* Bugfix: `$hash` now works for `Filter`s
1113

1214
# mlr3filters 0.7.1
1315

14-
- Tagged multiple filters to be able of gracefully handling missing values.
15-
- Added more supported feature types to FilterCarScore.
16-
- Improved documentation.
16+
* Tagged multiple filters to be able of gracefully handling missing values.
17+
* Added more supported feature types to FilterCarScore.
18+
* Improved documentation.
1719

1820
# mlr3filters 0.7.0
1921

20-
- Features are now checked for missing values to improve error messages (#140)
21-
- Removed deprecated functions
22-
- Use featureless learner in defaults (#124)
23-
- Field `task_type` of class `Filter` has been renamed to `task_types`.
22+
* Features are now checked for missing values to improve error messages (#140)
23+
* Removed deprecated functions
24+
* Use featureless learner in defaults (#124)
25+
* Field `task_type` of class `Filter` has been renamed to `task_types`.
2426

2527
# mlr3filters 0.6.0
2628

27-
- Add `FilterCarSurvScore` (#120, @mllg)
28-
- Use featureless learner instead of rpart as default learner for `FilterImportance` and `FilterPerformance` (#124)
29-
- Add documentation for PipeOpFilter
30-
- Add mlr3pipelines examples to help pages (#135, @sebffischer)
31-
- Add `label` arg to `Filter` class (#121, @mllg)
29+
* Add `FilterCarSurvScore` (#120, @mllg)
30+
* Use featureless learner instead of rpart as default learner for `FilterImportance` and `FilterPerformance` (#124)
31+
* Add documentation for PipeOpFilter
32+
* Add mlr3pipelines examples to help pages (#135, @sebffischer)
33+
* Add `label` arg to `Filter` class (#121, @mllg)
3234

3335
# mlr3filters 0.5.0
3436

35-
- Add references to benchmark paper and praznik paper (#104)
36-
- New filter `FilterSelectedFeatures` which makes use of embedded feature selection methods of learners.
37+
* Add references to benchmark paper and praznik paper (#104)
38+
* New filter `FilterSelectedFeatures` which makes use of embedded feature selection methods of learners.
3739
See the help page for more details (#102)
38-
- Allow `NA` as task type.
40+
* Allow `NA` as task type.
3941
This makes it possible to use other tasks than `"regr"` or `"classif"` for certain filters, e.g. `FilterVariance` (#106)
4042

4143

4244
# mlr3filters 0.4.2
4345

44-
- Fixes an issue where argument `nfeat` was not passed down to {praznik} filters (#97)
46+
* Fixes an issue where argument `nfeat` was not passed down to {praznik} filters (#97)
4547

4648

4749
# mlr3filters 0.4.1
4850

49-
- Disable threading in praznik filters by default (5f24742e9b92f6a5f828c4f755be3fb53427afdb, @mllg)
51+
* Disable threading in praznik filters by default (5f24742e9b92f6a5f828c4f755be3fb53427afdb, @mllg)
5052
Enable by setting hyperparameter `threads` >= 2 or to `0` for auto-detection of available cores (#93, @mllg)
51-
- Document return type of private `.calculate()` (#92, @mllg)
52-
- Allow `NA` in returned vectors.
53+
* Document return type of private `.calculate()` (#92, @mllg)
54+
* Allow `NA` in returned vectors.
5355
Features with missing values as well as features with no calculated score are automatically ranked last, in a random order. (#92, @mllg)
54-
- praznik filters now also support `regr` Tasks (#90, @bommert)
56+
* praznik filters now also support `regr` Tasks (#90, @bommert)
5557

5658

5759
# mlr3filters 0.4.0
5860

59-
- Add ReliefF filter (#86)
60-
- Fix praznik scores calculation: praznik filters are not monotone in the selected features due to their iterative fashion. E.g., the first selected feature can have a score of 5, the second selected feature a score of 10. This version replaces the praznik scores by a simple sequence (#87, @mllg)
61+
* Add ReliefF filter (#86)
62+
* Fix praznik scores calculation: praznik filters are not monotone in the selected features due to their iterative fashion. E.g., the first selected feature can have a score of 5, the second selected feature a score of 10. This version replaces the praznik scores by a simple sequence (#87, @mllg)
6163

6264

6365
# mlr3filters 0.3.0
6466

65-
- Add Permutation (#70)
66-
- Add `flts()` (#77)
67-
- Github Actions: set cron job to 4am to avoid potential download issues with R-devel on macOS
68-
- Filters now have a help method `$help()` which opens the respective help page (#68)
67+
* Add Permutation (#70)
68+
* Add `flts()` (#77)
69+
* Github Actions: set cron job to 4am to avoid potential download issues with R-devel on macOS
70+
* Filters now have a help method `$help()` which opens the respective help page (#68)
6971

7072

7173
# mlr3filters 0.2.0

R/FilterCorrelation.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#' as.data.table(filter)
3838
#' if (mlr3misc::require_namespaces(c("mlr3pipelines", "rpart"), quietly = TRUE)) {
3939
#' library("mlr3pipelines")
40-
#' task = mlr3::tsk("boston_housing")
40+
#' task = mlr3::tsk("mtcars")
4141
#'
4242
#' # Note: `filter.frac` is selected randomly and should be tuned.
4343
#'

man/flt.Rd

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/mlr_filters_correlation.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test_filter_regr.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ test_that("filters throw errors on missing values", {
3535
})
3636

3737
test_that("Errors for unsupported features", {
38-
task = tsk("boston_housing")
38+
skip_if("ames_housing" %nin% mlr_tasks$keys())
39+
task = tsk("ames_housing")
3940
filters = mlr_filters$mget(mlr_filters$keys())
4041

4142
# supported: numeric, integer

tests/testthat/test_filter_surv.R

+2
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,5 @@ test_that("filters throw errors on missing values", {
4040
}
4141
}
4242
})
43+
44+

0 commit comments

Comments
 (0)