step_bs()
創建配方步驟的規範,該步驟將使用 B-splines 創建作為變量的基礎擴展的新列。
用法
step_bs(
recipe,
...,
role = "predictor",
trained = FALSE,
deg_free = NULL,
degree = 3,
objects = NULL,
options = list(),
keep_original_cols = FALSE,
skip = FALSE,
id = rand_id("bs")
)
參數
- recipe
-
一個菜譜對象。該步驟將添加到此配方的操作序列中。
- ...
-
一個或多個選擇器函數用於為此步驟選擇變量。有關更多詳細信息,請參閱
selections()
。 - role
-
對於此步驟創建的模型項,應為其分配什麽分析角色?默認情況下,此步驟根據原始變量創建的新列將用作模型中的預測變量。
- trained
-
指示預處理數量是否已估計的邏輯。
- deg_free
-
樣條線的自由度。隨著樣條自由度的增加,可以生成更靈活、更複雜的曲線。當使用單個自由度時,結果是原始數據的重新縮放版本。
- degree
-
多項式樣條的次數(整數)。
- objects
-
步驟訓練完成後創建的
splines::bs()
對象列表。 - options
-
splines::bs()
的選項列表,不應包含x
、degree
或df
。 - keep_original_cols
-
將原始變量保留在輸出中的邏輯。默認為
FALSE
。 - skip
-
一個合乎邏輯的。當
bake()
烘焙食譜時是否應該跳過此步驟?雖然所有操作都是在prep()
運行時烘焙的,但某些操作可能無法對新數據進行(例如處理結果變量)。使用skip = TRUE
時應小心,因為它可能會影響後續操作的計算。 - id
-
該步驟特有的字符串,用於標識它。
細節
step_bs
可以從單個變量創建新特征,使擬合例程能夠以非線性方式對該變量進行建模。可能的非線性程度由 splines::bs()
的 df
、 degree
或 knot
參數確定。原始變量將從數據中刪除,並添加新列。新變量的命名約定為varname_bs_1
,依此類推。
整理
當您tidy()
此步驟時,將返回帶有列terms
(將受影響的列)的tibble。
也可以看看
其他單獨的轉換步驟:step_BoxCox()
, step_YeoJohnson()
, step_harmonic()
, step_hyperbolic()
, step_inverse()
, step_invlogit()
, step_logit()
, step_log()
, step_mutate()
, step_ns()
, step_percentile()
, step_poly()
, 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
)
with_splines <- rec %>%
step_bs(carbon, hydrogen)
with_splines <- prep(with_splines, training = biomass_tr)
expanded <- bake(with_splines, biomass_te)
expanded
#> # A tibble: 80 × 10
#> oxygen nitrogen sulfur HHV carbon_bs_1 carbon_bs_2 carbon_bs_3
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 47.2 0.3 0.22 18.3 0.437 0.273 0.0568
#> 2 48.1 2.85 0.34 17.6 0.444 0.236 0.0417
#> 3 49.1 2.4 0.3 17.2 0.444 0.229 0.0394
#> 4 37.3 1.8 0.5 18.9 0.437 0.273 0.0571
#> 5 42.8 0.2 0 20.5 0.427 0.301 0.0707
#> 6 41.7 0.7 0.2 18.5 0.442 0.248 0.0465
#> 7 54.1 1.19 0.51 15.1 0.440 0.184 0.0256
#> 8 33.8 0.95 0.2 16.2 0.444 0.222 0.0369
#> 9 31.1 0.14 4.9 11.1 0.359 0.0771 0.00552
#> 10 23.7 4.63 1.05 10.8 0.338 0.0643 0.00408
#> # ℹ 70 more rows
#> # ℹ 3 more variables: hydrogen_bs_1 <dbl>, hydrogen_bs_2 <dbl>,
#> # hydrogen_bs_3 <dbl>
相關用法
- R recipes step_bin2factor 從虛擬變量創建因子
- 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_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 信號提取
- R recipes step_discretize 離散數值變量
- R recipes step_dummy_multi_choice 一起處理多個預測變量的水平
注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 B-Spline Basis Functions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。