September 2016
Beginner to intermediate
346 pages
6h 35m
English
StatsBase.jl provides various functions to compute deviations between two datasets. This can be calculated using other functions, but to facilitate and for ease of use, StatsBase provides these efficiently implemented functions:
a and b, it is calculated as meanad(x,y) which is a wrapper over mean(abs(x-y)).a and b, it is calculated as maxad(x,y), which is a wrapper over maximum(abs(x-y)).a and b, it is calculated as msd(x,y), which is a wrapper over mean(abs2(x-y)).a and b, it is calculated as rmsd(a,b), which is a wrapper over sqrt(msd(a, b)).Read now
Unlock full access