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


R textrecipes show_tokens 显示配方的令牌输出


将标记作为菜谱的字符向量列表返回。此函数对于执行配方构建的诊断很有用,但不应在最终配方步骤中使用。请注意,此函数将 prep() 和 bake() 用作其所使用的配方。

用法

show_tokens(rec, var, n = 6L)

参数

rec

配方对象

var

变量名称

n

要返回的元素数。

字符向量列表

例子

text_tibble <- tibble(text = c("This is words", "They are nice!"))

recipe(~text, data = text_tibble) %>%
  step_tokenize(text) %>%
  show_tokens(text)
#> [[1]]
#> [1] "this"  "is"    "words"
#> 
#> [[2]]
#> [1] "they" "are"  "nice"
#> 

library(modeldata)
data(tate_text)

recipe(~., data = tate_text) %>%
  step_tokenize(medium) %>%
  show_tokens(medium)
#> [[1]]
#> [1] "video"      "monitor"    "or"         "projection" "colour"    
#> [6] "and"        "sound"      "stereo"    
#> 
#> [[2]]
#> [1] "etching" "on"      "paper"  
#> 
#> [[3]]
#> [1] "etching" "on"      "paper"  
#> 
#> [[4]]
#> [1] "etching" "on"      "paper"  
#> 
#> [[5]]
#> [1] "oil"    "paint"  "on"     "canvas"
#> 
#> [[6]]
#> [1] "oil"    "paint"  "on"     "canvas"
#> 
源代码:R/show_tokens.R

相关用法


注:本文由纯净天空筛选整理自大神的英文原创作品 Show token output of recipe。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。