step_impute_linear()
创建配方步骤的规范,该步骤将创建线性回归模型来估算缺失数据。
用法
step_impute_linear(
recipe,
...,
role = NA,
trained = FALSE,
impute_with = imp_vars(all_predictors()),
models = NULL,
skip = FALSE,
id = rand_id("impute_linear")
)
参数
- recipe
-
一个菜谱对象。该步骤将添加到此配方的操作序列中。
- ...
-
一个或多个选择器函数来选择要估算的变量;这些变量的类型必须是
numeric
。当与imp_vars
一起使用时,这些点指示哪些变量用于预测每个变量中的缺失数据。有关更多详细信息,请参阅selections()
。 - role
-
由于没有创建新变量,因此此步骤未使用。
- trained
-
指示预处理数量是否已估计的逻辑。
- impute_with
-
调用
imp_vars
来指定使用哪些变量来插补变量,这些变量可以包含由逗号或不同选择器分隔的特定变量名称(请参阅selections()
)。如果某个列同时包含在要插补的列表和插补预测变量的列表中,则该列将从后者中删除,并且不会用于插补本身。 - models
- skip
-
一个合乎逻辑的。当
bake()
烘焙食谱时是否应该跳过此步骤?虽然所有操作都是在prep()
运行时烘焙的,但某些操作可能无法对新数据进行(例如处理结果变量)。使用skip = TRUE
时应小心,因为它可能会影响后续操作的计算。 - id
-
该步骤特有的字符串,用于标识它。
细节
对于需要插补的每个变量,拟合线性模型,其中结果是感兴趣的变量,预测变量是 impute_with
公式中列出的任何其他变量。请注意,如果要估算的变量也在 impute_with
中,则该变量将被忽略。
要估算的变量必须为 numeric
类型。估算值将保持与其原始数据相同的类型(即,模型预测根据需要强制为整数)。
由于这是线性回归,插补模型仅使用训练集预测变量的完整案例。
整理
当您tidy()
此步骤时,将返回包含列terms
(选择的选择器或变量)和model
(袋装树对象)的tibble。
箱重
此步骤执行可以利用案例权重的无监督操作。因此,个案权重仅与频率权重一起使用。有关更多信息,请参阅 case_weights 中的文档和 tidymodels.org
中的示例。
参考
库恩,M. 和约翰逊,K. (2013)。特征工程和选择https://bookdown.org/max/FES/handling-missing-data.html
也可以看看
其他插补步骤: step_impute_bag()
、 step_impute_knn()
、 step_impute_lower()
、 step_impute_mean()
、 step_impute_median()
、 step_impute_mode()
、 step_impute_roll()
例子
data(ames, package = "modeldata")
set.seed(393)
ames_missing <- ames
ames_missing$Longitude[sample(1:nrow(ames), 200)] <- NA
imputed_ames <-
recipe(Sale_Price ~ ., data = ames_missing) %>%
step_impute_linear(
Longitude,
impute_with = imp_vars(Latitude, Neighborhood, MS_Zoning, Alley)
) %>%
prep(ames_missing)
imputed <-
bake(imputed_ames, new_data = ames_missing) %>%
dplyr::rename(imputed = Longitude) %>%
bind_cols(ames %>% dplyr::select(original = Longitude)) %>%
bind_cols(ames_missing %>% dplyr::select(Longitude)) %>%
dplyr::filter(is.na(Longitude))
library(ggplot2)
ggplot(imputed, aes(x = original, y = imputed)) +
geom_abline(col = "green") +
geom_point(alpha = .3) +
coord_equal() +
labs(title = "Imputed Values")
相关用法
- R recipes step_impute_lower 估算低于测量阈值的数值数据
- R recipes step_impute_knn 通过 k 最近邻进行插补
- R recipes step_impute_mean 使用平均值估算数值数据
- R recipes step_impute_roll 使用滚动窗口统计估算数值数据
- R recipes step_impute_mode 使用最常见的值估算名义数据
- R recipes step_impute_bag 通过袋装树进行插补
- R recipes step_impute_median 使用中位数估算数值数据
- R recipes step_inverse 逆变换
- R recipes step_ica ICA 信号提取
- R recipes step_indicate_na 创建缺失数据列指示器
- R recipes step_integer 将值转换为预定义的整数
- R recipes step_intercept 添加截距(或常数)列
- R recipes step_interact 创建交互变量
- R recipes step_invlogit 逆 Logit 变换
- R recipes step_isomap 等位图嵌入
- R recipes step_unknown 将缺失的类别分配给“未知”
- R recipes step_relu 应用(平滑)修正线性变换
- R recipes step_poly_bernstein 广义伯恩斯坦多项式基
- 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 数据深度
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Impute numeric variables via a linear model。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。