Skip to content

Commit 80bf473

Browse files
committed
update version and news
1 parent 510648d commit 80bf473

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: mlr3proba
22
Title: Probabilistic Supervised Learning for 'mlr3'
3-
Version: 0.6.4
3+
Version: 0.6.5
44
Authors@R:
55
c(person(given = "Raphael",
66
family = "Sonabend",

NEWS.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
# mlr3proba 0.6.5
2+
3+
* Add support for discrete-time survival analysis
4+
* New `PipeOp`s: `PipeOpTaskSurvClassifDiscTime`, `PipeOpPredClassifSurvDiscTime`
5+
* New pipeline: `pipeline_survtoclassif`
6+
17
# mlr3proba 0.6.4
28

3-
* Add `PipeTaskSurvClassif`, `PipeOpPredClassifSurv` and `pipeline_survtoclassif` to transform a survival task into a classification task by discretizing the status.
49
* Add useR! 2024 tutorial
510
* Lots of refactoring, improving code quality, migration to testthat v3, etc. (thanks to @m-muecke)
611

test.R

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
keys = as.data.table(mlr_tasks)[task_type == "surv"][["key"]]
2+
3+
tasks = lapply(keys, function(key) {
4+
tsk(key)
5+
})

0 commit comments

Comments
 (0)