powered by
Compute the mode for each cell across the layers of a SpatRaster. The mode, or modal value, is the most frequent value in a set of values.
# S4 method for SpatRaster modal(x, ..., ties="first", na.rm=FALSE, filename="", overwrite=FALSE, wopt=list())
SpatRaster
additional argument of the same type as x or numeric
x
character. Indicates how to treat ties. Either "random", "lowest", "highest", "first", or "NA"
logical. If TRUE, NA values are ignored. If FALSE, NA is returned if x has any NA values
TRUE
NA
FALSE
character. Output filename. Optional
logical. If TRUE, filename is overwritten
filename
list. Options for writing files as in writeRaster
writeRaster
# NOT RUN { r <- rast(system.file("exdata/logo.tif", package="terra")) r <- c(r/2, r, r*2) m <- modal(r) # }
Run the code above in your browser using DataLab