Learn R Programming

FIACH (version 0.1.2)

colMad: Compute Column Median Absolute Deviations

Description

This function computes the median absolute deviation of each column in a matrix.

Usage

colMad(X)

Arguments

X
X must be a numeric matrix.

Value

returns a vector containing the column Median Absolute Deviations.

Examples

Run this code

mat<-matrix(rnorm(100*100),ncol=100)
a<-colMad(mat)

Run the code above in your browser using DataLab