當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R dials texthash 文本哈希參數


用於textrecipes::step_texthash()

用法

num_hash(range = c(8L, 12L), trans = log2_trans())

signed_hash(values = c(TRUE, FALSE))

參數

range

一個二元素向量,分別保存最小和最大可能值的默認值。如果指定了轉換,這些值應采用轉換後的單位。

trans

scales 包中的 trans 對象,例如 scales::log10_trans()scales::reciprocal_trans() 。如果未提供,則使用與 range 中使用的單位相匹配的默認值。如果沒有轉換,NULL

values

可能值(TRUE 或 FALSE)的向量。

例子

num_hash()
#> # Hash Features (quantitative)
#> Transformer: log-2 [1e-100, Inf]
#> Range (transformed scale): [8, 12]
signed_hash()
#> Signed Hash Value  (qualitative)
#> 2 possible values include:
#> TRUE and FALSE 
源代碼:R/param_num_hash.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Text hashing parameters。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。