當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R parsnip survival_reg 參數生存回歸


survival_reg() 定義參數生存模型。該函數可以擬合刪失回歸模型。

擬合該模型的方法有多種,通過設置模型引擎來選擇估計方法。下麵列出了該模型的引擎特定頁麵。

1 默認引擎。 ² 需要防風草擴展包。

有關如何操作的更多信息防風草用於建模的是https://www.tidymodels.org/.

用法

survival_reg(mode = "censored regression", engine = "survival", dist = NULL)

參數

mode

預測結果模式的單個字符串。該模型唯一可能的值為"censored regression"。

engine

指定用於擬合的計算引擎的單個字符串。

dist

結果概率分布的字符串。默認為"weibull"。

細節

此函數僅定義正在擬合的模型類型。一旦指定了引擎,也就定義了擬合模型的方法。有關設置引擎的更多信息,包括如何設置引擎參數,請參閱set_engine()

fit() 函數與數據一起使用之前,模型不會經過訓練或擬合。

此函數中除 modeengine 之外的每個參數都被捕獲為 quosures 。要以編程方式傳遞值,請使用injection operator,如下所示:

value <- 1
survival_reg(argument = !!value)

由於生存模型通常涉及審查(並且需要使用 survival::Surv() 對象),因此 fit.model_spec() 函數將要求通過公式接口指定生存模型。

參考

https://www.tidymodels.org, Tidy Modeling with R, searchable table of parsnip models

例子

show_engines("survival_reg")
#> # A tibble: 0 × 2
#> # ℹ 2 variables: engine <chr>, mode <chr>

survival_reg(mode = "censored regression", dist = "weibull")
#> ! parsnip could not locate an implementation for `survival_reg` censored
#>   regression model specifications.
#> ℹ The parsnip extension package censored implements support for this
#>   specification.
#> ℹ Please install (if needed) and load to continue.
#> Parametric Survival Regression Model Specification (censored regression)
#> 
#> Main Arguments:
#>   dist = weibull
#> 
#> Computational engine: survival 
#> 
源代碼:R/survival_reg.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Parametric survival regression。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。