当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R recipes step_ordinalscore 将序数因子转换为数值分数


step_ordinalscore() 创建配方步骤的规范,该步骤将序数因子变量转换为数字分数。

用法

step_ordinalscore(
  recipe,
  ...,
  role = NA,
  trained = FALSE,
  columns = NULL,
  convert = as.numeric,
  skip = FALSE,
  id = rand_id("ordinalscore")
)

参数

recipe

一个菜谱对象。该步骤将添加到此配方的操作序列中。

...

一个或多个选择器函数用于为此步骤选择变量。有关更多详细信息,请参阅selections()

role

由于没有创建新变量,因此此步骤未使用。

trained

指示预处理数量是否已估计的逻辑。

columns

所选变量名称的字符串。该字段是一个占位符,一旦使用 prep() 就会被填充。

convert

将序数因子向量作为输入并输出单个数值变量的函数。

skip

一个合乎逻辑的。当bake() 烘焙食谱时是否应该跳过此步骤?虽然所有操作都是在 prep() 运行时烘焙的,但某些操作可能无法对新数据进行(例如处理结果变量)。使用skip = TRUE时应小心,因为它可能会影响后续操作的计算。

id

该步骤特有的字符串,用于标识它。

recipe 的更新版本,将新步骤添加到任何现有操作的序列中。

细节

来自具有 C 级别的有序因子的虚拟变量将创建具有 C-1 项的多项式基函数。作为替代方案,此步骤可用于将有序级别转换为表示(主观)分数的值的单个数字向量。默认情况下,翻译使用线性比例(1,2,3,...C),但也可以使用自定义评分函数(请参见下面的示例)。

整理

当您tidy()此步骤时,将返回带有列terms(将受影响的列)的tibble。

箱重

底层操作不允许使用案例权重。

例子

fail_lvls <- c("meh", "annoying", "really_bad")

ord_data <-
  data.frame(
    item = c("paperclip", "twitter", "airbag"),
    fail_severity = factor(fail_lvls,
      levels = fail_lvls,
      ordered = TRUE
    )
  )

model.matrix(~fail_severity, data = ord_data)
#>   (Intercept) fail_severity.L fail_severity.Q
#> 1           1   -7.071068e-01       0.4082483
#> 2           1   -9.073800e-17      -0.8164966
#> 3           1    7.071068e-01       0.4082483
#> attr(,"assign")
#> [1] 0 1 1
#> attr(,"contrasts")
#> attr(,"contrasts")$fail_severity
#> [1] "contr.poly"
#> 

linear_values <- recipe(~ item + fail_severity, data = ord_data) %>%
  step_dummy(item) %>%
  step_ordinalscore(fail_severity)

linear_values <- prep(linear_values, training = ord_data)

bake(linear_values, new_data = NULL, everything())
#> # A tibble: 3 × 3
#>   fail_severity item_paperclip item_twitter
#>           <int>          <dbl>        <dbl>
#> 1             1              1            0
#> 2             2              0            1
#> 3             3              0            0

custom <- function(x) {
  new_values <- c(1, 3, 7)
  new_values[as.numeric(x)]
}

nonlin_scores <- recipe(~ item + fail_severity, data = ord_data) %>%
  step_dummy(item) %>%
  step_ordinalscore(fail_severity, convert = custom)

tidy(nonlin_scores, number = 2)
#> # A tibble: 1 × 2
#>   terms         id                
#>   <chr>         <chr>             
#> 1 fail_severity ordinalscore_eIAmG

nonlin_scores <- prep(nonlin_scores, training = ord_data)

bake(nonlin_scores, new_data = NULL, everything())
#> # A tibble: 3 × 3
#>   fail_severity item_paperclip item_twitter
#>           <int>          <dbl>        <dbl>
#> 1             1              1            0
#> 2             3              0            1
#> 3             7              0            0

tidy(nonlin_scores, number = 2)
#> # A tibble: 1 × 2
#>   terms         id                
#>   <chr>         <chr>             
#> 1 fail_severity ordinalscore_eIAmG
源代码:R/ordinalscore.R

相关用法


注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Convert Ordinal Factors to Numeric Scores。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。