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


R hardhat frequency_weights 頻率權重


[Experimental]

frequency_weights() 創建一個頻率權重向量,使您可以緊湊地重複觀察一定次數。頻率權重作為非負整數向量提供,其中僅允許整數。

用法

frequency_weights(x)

參數

x

整數向量。

新的頻率權重向量。

細節

頻率權重是整數,表示特定數據行被觀察的次數。它們有助於將冗餘行壓縮為單個條目。

在 tidymodels 中,頻率權重用於預處理、模型擬合和性能估計操作的所有部分。

也可以看看

例子

# Record that the first observation has 10 replicates, the second has 12
# replicates, and so on
frequency_weights(c(10, 12, 2, 1))
#> <frequency_weights[4]>
#> [1] 10 12  2  1

# Fractional values are not allowed
try(frequency_weights(c(1.5, 2.3, 10)))
#> Error in frequency_weights(c(1.5, 2.3, 10)) : 
#>   Can't convert from `x` <double> to <integer> due to loss of precision.
#> • Locations: 1, 2
源代碼:R/case-weights.R

相關用法


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