We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd668b commit a7327c9Copy full SHA for a7327c9
NEWS.md
@@ -1,5 +1,7 @@
1
# parsnip (development version)
2
3
+* `surv_reg()` is now defunct and will error if called. Please use `survival_reg()` instead (#1206).
4
+
5
# parsnip 1.3.3
6
7
* Bug fix in how tunable parameters were configured for brulee neural networks.
R/surv_reg.R
@@ -28,7 +28,7 @@
28
#' @export
29
surv_reg <- function(mode = "regression", engine = "survival", dist = NULL) {
30
31
- lifecycle::deprecate_warn("0.1.6", "surv_reg()", "survival_reg()")
+ lifecycle::deprecate_stop("1.4.0", "surv_reg()", "survival_reg()")
32
33
args <- list(
34
dist = enquo(dist)
0 commit comments