quantile | R Documentation |
Compute quantiles for each cell across the layers of a SpatRaster.
You can use use global(x, fun=quantile)
to instead compute quantiles across cells for each layer.
You can also use this method to compute quantiles of the numeric variables of a SpatVector.
## S4 method for signature 'SpatRaster'
quantile(x, probs=seq(0, 1, 0.25), na.rm=FALSE, filename="", ...)
## S4 method for signature 'SpatVector'
quantile(x, probs=seq(0, 1, 0.25), ...)
x |
SpatRaster or SpatVector |
probs |
numeric vector of probabilities with values in [0,1] |
na.rm |
logical. If |
filename |
character. Output filename |
... |
additional arguments for writing files as in |
SpatRaster with layers representing quantiles
app
r <- rast(system.file("ex/logo.tif", package="terra"))
rr <- c(r/2, r, r*2)
qr <- quantile(rr)
qr
## Not run:
# same but slower
qa <- app(rr, quantile)
## End(Not run)
#quantile by layer instead of by cell
qg <- global(r, quantile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.