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


R dials degree 指数参数


这些参数有助于对感兴趣的指数(例如 degree()spline_degree() )或使用乘积(例如 prod_degree )的情况进行建模。

用法

degree(range = c(1, 3), trans = NULL)

degree_int(range = c(1L, 3L), trans = NULL)

spline_degree(range = c(1L, 10L), trans = NULL)

prod_degree(range = c(1L, 2L), trans = NULL)

参数

range

一个二元素向量,分别保存最小和最大可能值的默认值。如果指定了转换,这些值应采用转换后的单位。

trans

scales 包中的 trans 对象,例如 scales::log10_trans()scales::reciprocal_trans() 。如果未提供,则使用与 range 中使用的单位相匹配的默认值。如果没有转换,NULL

细节

degree() 对于实数指数参数(例如 x^degree )很有帮助,而 degree_int() 适用于指数应该是整数的情况。

degree_int()spline_degree() 之间的区别是默认范围(基于它们的使用方式/位置的上下文)。

prod_degree()parsnip::mars() 用于交互中的项数(并生成一个整数)。

例子

degree()
#> Polynomial Degree (quantitative)
#> Range: [1, 3]
degree_int()
#> Polynomial Degree (quantitative)
#> Range: [1, 3]
spline_degree()
#> Spline Degrees of Freedom (quantitative)
#> Range: [1, 10]
prod_degree()
#> Degree of Interaction (quantitative)
#> Range: [1, 2]
源代码:R/param_degree.R

相关用法


注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Parameters for exponents。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。