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


R parsnip max_mtry_formula 根據公式確定 mtry 的最大值。此函數可能會根據公式和數據集限製 mtry 的值。對於生存和/或多變量模型來說,這是一種安全的方法。


根據公式確定 mtry 的最大值。此函數可能會根據公式和數據集限製 mtry 的值。對於生存和/或多變量模型來說,這是一種安全的方法。

用法

max_mtry_formula(mtry, formula, data)

參數

mtry

初始值mtry(可能太大)。

formula

模型公式。

data

訓練集( DataFrame )。

mtry 的值。

例子

# should be 9
max_mtry_formula(200, cbind(wt, mpg) ~ ., data = mtcars)
#> [1] 9
源代碼:R/partykit.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Determine largest value of mtry from formula. This function potentially caps the value of mtry based on a formula and data set. This is a safe approach for survival and/or multivariate models.。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。