step_cut()
创建配方步骤的规范,该配方步骤根据提供的边界值将数值变量切割为因子。
用法
step_cut(
recipe,
...,
role = NA,
trained = FALSE,
breaks,
include_outside_range = FALSE,
skip = FALSE,
id = rand_id("cut")
)
参数
- recipe
-
一个菜谱对象。该步骤将添加到此配方的操作序列中。
- ...
-
一个或多个选择器函数用于为此步骤选择变量。有关更多详细信息,请参阅
selections()
。 - role
-
由于没有创建新变量,因此此步骤未使用。
- trained
-
指示预处理数量是否已估计的逻辑。
- breaks
-
具有至少一个分割点的数值向量。
- include_outside_range
-
逻辑,指示训练集中超出范围的值是否应包含在最低或最高存储桶中。默认为
FALSE
,超出原始范围的值将设置为NA
。 - skip
-
一个合乎逻辑的。当
bake()
烘焙食谱时是否应该跳过此步骤?虽然所有操作都是在prep()
运行时烘焙的,但某些操作可能无法对新数据进行(例如处理结果变量)。使用skip = TRUE
时应小心,因为它可能会影响后续操作的计算。 - id
-
该步骤特有的字符串,用于标识它。
细节
与 base::cut()
函数不同,无需在中断中指定最小值和最大值。最低断点之前的所有值将最终出现在第一个存储桶中,最后一个断点之后的所有值将最终出现在最后一个存储桶中。
step_cut()
将在烘焙步骤中调用 base::cut()
,并将 include.lowest
设置为 TRUE
。
也可以看看
其他离散化步骤:step_discretize()
例子
df <- data.frame(x = 1:10, y = 5:14)
rec <- recipe(df)
# The min and max of the variable are used as boundaries
# if they exceed the breaks
rec %>%
step_cut(x, breaks = 5) %>%
prep() %>%
bake(df)
#> # A tibble: 10 × 2
#> x y
#> <fct> <int>
#> 1 [1,5] 5
#> 2 [1,5] 6
#> 3 [1,5] 7
#> 4 [1,5] 8
#> 5 [1,5] 9
#> 6 (5,10] 10
#> 7 (5,10] 11
#> 8 (5,10] 12
#> 9 (5,10] 13
#> 10 (5,10] 14
# You can use the same breaks on multiple variables
# then for each variable the boundaries are set separately
rec %>%
step_cut(x, y, breaks = c(6, 9)) %>%
prep() %>%
bake(df)
#> # A tibble: 10 × 2
#> x y
#> <fct> <fct>
#> 1 [1,6] [5,6]
#> 2 [1,6] [5,6]
#> 3 [1,6] (6,9]
#> 4 [1,6] (6,9]
#> 5 [1,6] (6,9]
#> 6 [1,6] (9,14]
#> 7 (6,9] (9,14]
#> 8 (6,9] (9,14]
#> 9 (6,9] (9,14]
#> 10 (9,10] (9,14]
# You can keep the original variables using `step_mutate` or
# `step_mutate_at`, for transforming multiple variables at once
rec %>%
step_mutate(x_orig = x) %>%
step_cut(x, breaks = 5) %>%
prep() %>%
bake(df)
#> # A tibble: 10 × 3
#> x y x_orig
#> <fct> <int> <int>
#> 1 [1,5] 5 1
#> 2 [1,5] 6 2
#> 3 [1,5] 7 3
#> 4 [1,5] 8 4
#> 5 [1,5] 9 5
#> 6 (5,10] 10 6
#> 7 (5,10] 11 7
#> 8 (5,10] 12 8
#> 9 (5,10] 13 9
#> 10 (5,10] 14 10
# It is up to you if you want values outside the
# range learned at prep to be included
new_df <- data.frame(x = 1:11, y = 5:15)
rec %>%
step_cut(x, breaks = 5, include_outside_range = TRUE) %>%
prep() %>%
bake(new_df)
#> # A tibble: 11 × 2
#> x y
#> <fct> <int>
#> 1 [min,5] 5
#> 2 [min,5] 6
#> 3 [min,5] 7
#> 4 [min,5] 8
#> 5 [min,5] 9
#> 6 (5,max] 10
#> 7 (5,max] 11
#> 8 (5,max] 12
#> 9 (5,max] 13
#> 10 (5,max] 14
#> 11 (5,max] 15
rec %>%
step_cut(x, breaks = 5, include_outside_range = FALSE) %>%
prep() %>%
bake(new_df)
#> # A tibble: 11 × 2
#> x y
#> <fct> <int>
#> 1 [1,5] 5
#> 2 [1,5] 6
#> 3 [1,5] 7
#> 4 [1,5] 8
#> 5 [1,5] 9
#> 6 (5,10] 10
#> 7 (5,10] 11
#> 8 (5,10] 12
#> 9 (5,10] 13
#> 10 (5,10] 14
#> 11 NA 15
相关用法
- R recipes step_corr 高相关滤波器
- R recipes step_count 使用正则表达式创建模式计数
- R recipes step_classdist_shrunken 计算分类模型的缩小质心距离
- R recipes step_center 将数字数据居中
- R recipes step_classdist 到类质心的距离
- R recipes step_unknown 将缺失的类别分配给“未知”
- R recipes step_relu 应用(平滑)修正线性变换
- R recipes step_poly_bernstein 广义伯恩斯坦多项式基
- R recipes step_impute_knn 通过 k 最近邻进行插补
- R recipes step_impute_mean 使用平均值估算数值数据
- R recipes step_inverse 逆变换
- R recipes step_pls 偏最小二乘特征提取
- 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_novel 新因子水平的简单赋值
- R recipes step_select 使用 dplyr 选择变量
- R recipes step_regex 检测正则表达式
- R recipes step_spline_b 基础样条
- R recipes step_window 移动窗口函数
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Cut a numeric variable into a factor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。