当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。