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


R modelr typical 求典型值


对于数字、整数和有序因子向量,它返回中值。对于因子、字符和逻辑向量,它返回最常见的值。如果多个值与最常见的值相关,则返回全部值。 NA 缺失值总是默默地被删除。

用法

typical(x, ...)

参数

x

一个向量

...

方法使用的参数

例子

# median of numeric vector
typical(rpois(100, lambda = 10))
#> [1] 9

# most frequent value of character or factor
x <- sample(c("a", "b", "c"), 100, prob = c(0.6, 0.2, 0.2), replace = TRUE)
typical(x)
#> [1] "a"
typical(factor(x))
#> [1] "a"

# if tied, returns them all
x <- c("a", "a", "b", "b", "c")
typical(x)
#> [1] "a" "b"

# median of an ordered factor
typical(ordered(c("a", "a", "b", "c", "d")))
#> [1] "b"

源代码:R/typical.R

相关用法


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