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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。