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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。