Frequency table
Frequency table of the values of a SpatRaster. NA
s are not counted.
## S4 method for signature 'SpatRaster' freq(x, digits=0, value=NULL, bylayer=TRUE)
x |
SpatRaster |
bylayer |
logical. If |
digits |
integer. Used for rounding the values before tabulation. Ignored if |
value |
numeric. An optional single value to only count the number of cells with that value |
matrix with 2 columns (value, count) or, if bylayer=TRUE
three layers (layer, value, count).
r <- rast(nrow=10, ncol=10) set.seed(2) values(r) <- sample(5, ncell(r), replace=TRUE) freq(r, FALSE) freq(r) x <- c(r, r/3) freq(x, FALSE) freq(x) freq(x, digits=1) freq(x, digits=-1) freq(x, value=5)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.