mad()
R语言中的函数用于计算中位数绝对偏差,即与中位数的绝对偏差的(lo-/hi-)中位数。
用法: mad(x)
参数:
x:向量
范例1:
# R Program to calculate
# Median Absolute Deviation
# Creating a vector
x <- c(1:9)
# Calling mad() Function
mad(x)
输出:
[1] 2.9652
范例2:
# R Program to calculate
# Median Absolute Deviation
# Creating a vector
x <- c(1, 4, 2, 3, 7, 3, 8, 9, 2)
# Calling mad() Function
mad(x)
输出:
[1] 1.4826
相关用法
- R语言 median()用法及代码示例
- R语言 abs()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 cos()用法及代码示例
- R语言 cosh()用法及代码示例
- R语言 sin()用法及代码示例
- R语言 sinh()用法及代码示例
- R语言 tanh()用法及代码示例
- R语言 tan()用法及代码示例
- R语言 asin()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 atan()用法及代码示例
- R语言 exp()用法及代码示例
- R语言 factorial()用法及代码示例
- R语言 choose()用法及代码示例
- R语言 cumprod()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate the Median Absolute Deviation in R Programming – mad() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。