check_range
创建配方检查的规范,该规范将检查新数据中数值变量的范围是否发生更改。
用法
check_range(
recipe,
...,
role = NA,
skip = FALSE,
trained = FALSE,
slack_prop = 0.05,
warn = FALSE,
lower = NULL,
upper = NULL,
id = rand_id("range_check_")
)
参数
- recipe
-
一个菜谱对象。该检查将添加到该配方的操作序列中。
- ...
-
一个或多个选择器函数用于选择用于此检查的变量。有关更多详细信息,请参阅
selections()
。 - role
-
由于没有创建新变量,因此此检查未使用。
- skip
-
一个合乎逻辑的。当
bake()
烘焙食谱时是否应该跳过检查?虽然所有操作都是在prep()
运行时烘焙的,但某些操作可能无法对新数据进行(例如处理结果变量)。使用skip = TRUE
时应小心,因为它可能会影响后续操作的计算。 - trained
-
...
中的选择器是否已由prep()
解析的逻辑。 - slack_prop
-
允许的松弛作为训练集中变量范围的比例。
- warn
-
如果
TRUE
,检查失败时将抛出警告而不是错误。 - lower
-
训练集中最小值的命名数值向量。在由
prep()
计算之前,这是NULL
。 - upper
-
训练集中最大值的命名数值向量。在由
prep()
计算之前,这是NULL
。 - id
-
此检查唯一的字符串,用于识别它。
细节
允许的松弛量由slack_prop
确定。这是长度为一或二的数字。如果长度为一,则在训练集范围的两端将使用相同的比例。如果长度为二,则其第一个值用于计算下端允许的松弛,第二个值用于计算上端允许的松弛。
整理
当您tidy()
进行此检查时,将返回一个包含列terms
(选择的选择器或变量)和value
(平均值)的小标题。
也可以看看
其他检查:check_class()
、check_cols()
、check_missing()
、check_new_values()
例子
slack_df <- data_frame(x = 0:100)
#> Warning: `data_frame()` was deprecated in tibble 1.1.0.
#> ℹ Please use `tibble()` instead.
slack_new_data <- data_frame(x = -10:110)
# this will fail the check both ends
if (FALSE) {
recipe(slack_df) %>%
check_range(x) %>%
prep() %>%
bake(slack_new_data)
}
# this will fail the check only at the upper end
if (FALSE) {
recipe(slack_df) %>%
check_range(x, slack_prop = c(0.1, 0.05)) %>%
prep() %>%
bake(slack_new_data)
}
# give a warning instead of an error
if (FALSE) {
recipe(slack_df) %>%
check_range(x, warn = TRUE) %>%
prep() %>%
bake(slack_new_data)
}
相关用法
- R recipes check_new_values 检查新值
- R recipes check_missing 检查缺失值
- R recipes check_cols 检查所有列是否都存在
- R recipes check_class 检查变量类别
- 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 update.step 更新菜谱步骤
- 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 formula.recipe 从准备好的食谱创建配方
- R recipes step_regex 检测正则表达式
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Check Range Consistency。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。