step_poly()
创建配方步骤的规范,该步骤将创建新列,这些新列是使用正交多项式的变量的基础扩展。
用法
step_poly(
recipe,
...,
role = "predictor",
trained = FALSE,
objects = NULL,
degree = 2,
options = list(),
keep_original_cols = FALSE,
skip = FALSE,
id = rand_id("poly")
)
参数
- recipe
-
一个菜谱对象。该步骤将添加到此配方的操作序列中。
- ...
-
一个或多个选择器函数用于为此步骤选择变量。有关更多详细信息,请参阅
selections()
。 - role
-
对于此步骤创建的模型项,应为其分配什么分析角色?默认情况下,此步骤根据原始变量创建的新列将用作模型中的预测变量。
- trained
-
指示预处理数量是否已估计的逻辑。
- objects
-
步骤训练完成后创建的
stats::poly()
对象列表。 - degree
-
多项式的次数(整数)。
- options
-
stats::poly()
的选项列表,不应包含x
、degree
或simple
。请注意,选项raw = TRUE
将生成正则多项式值(未正交)。 - keep_original_cols
-
将原始变量保留在输出中的逻辑。默认为
FALSE
。 - skip
-
一个合乎逻辑的。当
bake()
烘焙食谱时是否应该跳过此步骤?虽然所有操作都是在prep()
运行时烘焙的,但某些操作可能无法对新数据进行(例如处理结果变量)。使用skip = TRUE
时应小心,因为它可能会影响后续操作的计算。 - id
-
该步骤特有的字符串,用于标识它。
细节
step_poly
可以从单个变量创建新特征,使拟合例程能够以非线性方式对该变量进行建模。可能的非线性程度由 stats::poly()
的 degree
参数确定。原始变量将从数据中删除,并添加新列。新变量的命名约定为varname_poly_1
,依此类推。
整理
当您tidy()
此步骤时,将返回包含列terms
(将受影响的列)和degree
的tibble。
也可以看看
其他单独的转换步骤:step_BoxCox()
, step_YeoJohnson()
, step_bs()
, step_harmonic()
, step_hyperbolic()
, step_inverse()
, step_invlogit()
, step_logit()
, step_log()
, step_mutate()
, step_ns()
, step_percentile()
, step_relu()
, step_sqrt()
例子
data(biomass, package = "modeldata")
biomass_tr <- biomass[biomass$dataset == "Training", ]
biomass_te <- biomass[biomass$dataset == "Testing", ]
rec <- recipe(
HHV ~ carbon + hydrogen + oxygen + nitrogen + sulfur,
data = biomass_tr
)
quadratic <- rec %>%
step_poly(carbon, hydrogen)
quadratic <- prep(quadratic, training = biomass_tr)
expanded <- bake(quadratic, biomass_te)
expanded
#> # A tibble: 80 × 8
#> oxygen nitrogen sulfur HHV carbon_poly_1 carbon_poly_2
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 47.2 0.3 0.22 18.3 -0.00903 -0.0124
#> 2 48.1 2.85 0.34 17.6 -0.0230 0.00403
#> 3 49.1 2.4 0.3 17.2 -0.0255 0.00734
#> 4 37.3 1.8 0.5 18.9 -0.00880 -0.0126
#> 5 42.8 0.2 0 20.5 0.00183 -0.0226
#> 6 41.7 0.7 0.2 18.5 -0.0183 -0.00195
#> 7 54.1 1.19 0.51 15.1 -0.0424 0.0331
#> 8 33.8 0.95 0.2 16.2 -0.0282 0.0111
#> 9 31.1 0.14 4.9 11.1 -0.0863 0.125
#> 10 23.7 4.63 1.05 10.8 -0.0926 0.142
#> # ℹ 70 more rows
#> # ℹ 2 more variables: hydrogen_poly_1 <dbl>, hydrogen_poly_2 <dbl>
tidy(quadratic, number = 1)
#> # A tibble: 2 × 3
#> terms degree id
#> <chr> <int> <chr>
#> 1 carbon 2 poly_R8bgI
#> 2 hydrogen 2 poly_R8bgI
相关用法
- R recipes step_poly_bernstein 广义伯恩斯坦多项式基
- R recipes step_pls 偏最小二乘特征提取
- R recipes step_profile 创建数据集的分析版本
- R recipes step_pca 主成分分析信号提取
- R recipes step_percentile 百分位变换
- R recipes step_unknown 将缺失的类别分配给“未知”
- R recipes step_relu 应用(平滑)修正线性变换
- R recipes step_impute_knn 通过 k 最近邻进行插补
- R recipes step_impute_mean 使用平均值估算数值数据
- R recipes step_inverse 逆变换
- R recipes step_ratio 比率变量创建
- R recipes step_geodist 两个地点之间的距离
- R recipes step_nzv 近零方差滤波器
- R recipes step_nnmf 非负矩阵分解信号提取
- R recipes step_normalize 中心和比例数值数据
- R recipes step_depth 数据深度
- R recipes step_other 折叠一些分类级别
- R recipes step_harmonic 添加正弦和余弦项以进行谐波分析
- R recipes step_corr 高相关滤波器
- R recipes step_novel 新因子水平的简单赋值
- R recipes step_select 使用 dplyr 选择变量
- R recipes step_regex 检测正则表达式
- R recipes step_spline_b 基础样条
- R recipes step_window 移动窗口函数
- R recipes step_ica ICA 信号提取
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Orthogonal Polynomial Basis Functions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。