对于数字、整数和有序因子向量,它返回中值。对于因子、字符和逻辑向量,它返回最常见的值。如果多个值与最常见的值相关,则返回全部值。 NA
缺失值总是默默地被删除。
例子
# 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 modelr resample “惰性”重采样。
- R modelr crossv_mc 生成测试训练对以进行交叉验证
- R modelr model_matrix 构建设计矩阵
- R modelr model-quality 计算给定数据集的模型质量
- R modelr permute 生成 n 个排列重复。
- R modelr fit_with 拟合公式列表
- R modelr add_residuals 将残差添加到 DataFrame
- R modelr data_grid 生成数据网格。
- R modelr formulas 创建公式列表
- R modelr add_predictions 将预测添加到 DataFrame
- R modelr seq_range 生成向量范围内的序列
- R modelr resample_partition 生成数据帧的独占分区
- R modelr add_predictors 将预测变量添加到公式中
- R modelr na.warn 处理缺失值并发出警告
- R modelr bootstrap 生成 n 个引导程序重复。
- R modelr resample_bootstrap 生成 boostrap 复制
- R vcov.gam 从 GAM 拟合中提取参数(估计器)协方差矩阵
- R gam.check 拟合 gam 模型的一些诊断
- R matrix转list用法及代码示例
- R as 强制对象属于某个类
- R null.space.dimension TPRS 未惩罚函数空间的基础
- R language-class 表示未评估语言对象的类
- R gam.reparam 寻找平方根惩罚的稳定正交重新参数化。
- R className 类名包含对应的包
- R extract.lme.cov 从 lme 对象中提取数据协方差矩阵
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Find the typical value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。