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


R dials cubist_parameters Cubist 可能的引擎參數參數


這些參數對於使用"Cubist"引擎的模型是輔助的。它們對應於使用 set_engine("Cubist0", ...) 指定的調整參數。

用法

extrapolation(range = c(1, 110), trans = NULL)

unbiased_rules(values = c(TRUE, FALSE))

max_rules(range = c(1L, 100L), trans = NULL)

參數

range

一個二元素向量,分別保存最小和最大可能值的默認值。如果指定了轉換,這些值應采用轉換後的單位。

trans

scales 包中的 trans 對象,例如 scales::log10_trans()scales::reciprocal_trans() 。如果未提供,則使用與 range 中使用的單位相匹配的默認值。如果沒有轉換,NULL

values

對於 unbiased_rules() ,可以是 TRUEFALSE

細節

要使用它們,請檢查?Cubist::cubistControl 以了解它們的使用方式。

例子

extrapolation()
#> Percent Allowable Extrapolation (quantitative)
#> Range: [1, 110]
unbiased_rules()
#> Use Unbiased Rules?  (qualitative)
#> 2 possible values include:
#> TRUE and FALSE 
max_rules()
#> Maximum Number of Rules (quantitative)
#> Range: [1, 100]

相關用法


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