I want to compute quantiles for each pixel across many layers
library(raster)
r <- raster(ncols=36, nrows=18)
r[] <- 1:ncell(r)
s <- stack(r, r*2, sqrt(r))
s[10:20] <- NA
beginCluster()
clusterR(s, calc, args=list(fun = quantile, na.rm= TRUE, prob = c(0.05, 0.5, 0.95)))
endCluster()
I would expect three layers, but instead it produces the default probs (see stats::quantile())
I also tried generating the function quantile with the specific arguments, as
function(x){quantile(x, probs = c(0.05, 0.5, 0.95)}
but got the following error
Error in is.infinite(v) : default method not implemented for type 'list'
The
terra
package has aquantile
method forSpatRaster
.That should be faster than with
raster
; but you can get the same result withraster
like thisBut I would do this instead:
And you could use the same function with
terra::app
.