The median absolute deviation is a measure of statistical dispersion that is more resilient to outliers than the standard deviation. Because the median absolute deviation is more robust to outliers, it may prove useful in distributions with mean or variance.
Examples
d <- rlnorm(60,1,1.4)
geom.mad(d,iters = 50)
#> [1] 2.961555
x <- matrix(rlnorm(60,1,1.4), ncol = 4)
mapply(geom.mad, as.data.frame(x))
#> V1 V2 V3 V4
#> 2.0074695 0.9808406 2.7665753 2.2705555