Hi Ferret users, I have an .nc file of dimension x,y,t, where I could find the standard deviation using following code,Now, I would like to map the interannual standard deviation.
let mean = data[x=@sum]/data[x=@ngd] let sqr = (data - mean)^2 let stdv = (sqr[x=@sum/sqr[x=@ngd])^0.5What's the best way for such a calculation ?