step_integer()
創建配方步驟的規範,該步驟將根據原始數據值將新數據轉換為一組整數。
用法
step_integer(
recipe,
...,
role = "predictor",
trained = FALSE,
strict = TRUE,
zero_based = FALSE,
key = NULL,
skip = FALSE,
id = rand_id("integer")
)
參數
- recipe
-
一個菜譜對象。該步驟將添加到此配方的操作序列中。
- ...
-
一個或多個選擇器函數用於為此步驟選擇變量。有關更多詳細信息,請參閱
selections()
。 - role
-
對於此步驟創建的模型項,應為其分配什麽分析角色?默認情況下,此步驟根據原始變量創建的新列將用作模型中的預測變量。
- trained
-
指示預處理數量是否已估計的邏輯。
- strict
-
值是否應作為整數返回(而不是雙精度)的邏輯。
- zero_based
-
整數是否應從零開始並將新值附加為最大整數的邏輯。
- key
-
包含為
terms
中包含的每個變量創建整數變量所需的信息的列表。在prep()
訓練該步驟之前,這是NULL
。 - skip
-
一個合乎邏輯的。當
bake()
烘焙食譜時是否應該跳過此步驟?雖然所有操作都是在prep()
運行時烘焙的,但某些操作可能無法對新數據進行(例如處理結果變量)。使用skip = TRUE
時應小心,因為它可能會影響後續操作的計算。 - id
-
該步驟特有的字符串,用於標識它。
細節
step_integer
將從訓練集中確定每個變量的唯一值(不包括缺失值),對它們進行排序,然後為每個值分配整數。烘焙時,每個數據點都會轉換為其相應的整數或尚未見過的數據的零值(盡管請參閱上麵的 zero_based
參數)。缺失值傳播。
因子輸入按其水平排序。所有其他均按 sort
排序。
不管名稱如何,新值都會以數字形式返回,除非 strict = TRUE
,這會將結果強製為整數。
整理
當您 tidy()
此步驟時,將返回一個包含列 terms
(選擇的選擇器或變量)和 value
(帶有轉換鍵的列表列)的 tibble。
也可以看看
其他虛擬變量和編碼步驟:step_bin2factor()
, step_count()
, step_date()
, step_dummy_extract()
, step_dummy_multi_choice()
, step_dummy()
, step_factor2string()
, step_holiday()
, step_indicate_na()
, step_novel()
, step_num2factor()
, step_ordinalscore()
, step_other()
, step_regex()
, step_relevel()
, step_string2factor()
, step_time()
, step_unknown()
, step_unorder()
例子
data(Sacramento, package = "modeldata")
sacr_tr <- Sacramento[1:100, ]
sacr_tr$sqft[1] <- NA
sacr_te <- Sacramento[101:105, ]
sacr_te$sqft[1] <- NA
sacr_te$city[1] <- "whoville"
#> Warning: invalid factor level, NA generated
sacr_te$city[2] <- NA
rec <- recipe(type ~ ., data = sacr_tr) %>%
step_integer(all_predictors()) %>%
prep(training = sacr_tr)
bake(rec, sacr_te, all_predictors())
#> # A tibble: 5 × 8
#> city zip beds baths sqft price latitude longitude
#> <int> <int> <int> <int> <int> <int> <int> <int>
#> 1 NA 35 4 2 NA 0 0 0
#> 2 NA 62 3 2 0 0 0 0
#> 3 28 34 3 2 56 0 0 0
#> 4 34 51 3 1 0 0 0 0
#> 5 34 58 4 3 0 0 0 0
tidy(rec, number = 1)
#> # A tibble: 8 × 3
#> terms value id
#> <chr> <list> <chr>
#> 1 city <tibble [37 × 2]> integer_3IckW
#> 2 zip <tibble [68 × 2]> integer_3IckW
#> 3 beds <tibble [5 × 2]> integer_3IckW
#> 4 baths <tibble [4 × 2]> integer_3IckW
#> 5 sqft <tibble [94 × 2]> integer_3IckW
#> 6 price <tibble [95 × 2]> integer_3IckW
#> 7 latitude <tibble [99 × 2]> integer_3IckW
#> 8 longitude <tibble [99 × 2]> integer_3IckW
相關用法
- R recipes step_intercept 添加截距(或常數)列
- R recipes step_interact 創建交互變量
- R recipes step_inverse 逆變換
- R recipes step_indicate_na 創建缺失數據列指示器
- R recipes step_invlogit 逆 Logit 變換
- R recipes step_impute_knn 通過 k 最近鄰進行插補
- R recipes step_impute_mean 使用平均值估算數值數據
- R recipes step_ica ICA 信號提取
- R recipes step_impute_roll 使用滾動窗口統計估算數值數據
- R recipes step_impute_mode 使用最常見的值估算名義數據
- R recipes step_impute_lower 估算低於測量閾值的數值數據
- R recipes step_impute_bag 通過袋裝樹進行插補
- R recipes step_impute_median 使用中位數估算數值數據
- R recipes step_impute_linear 通過線性模型估算數值變量
- 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等大神的英文原創作品 Convert values to predefined integers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。