headtail {terra} | R Documentation |
head and tail of a SpatRaster or SpatVector
Description
Show the head (first values) or tail (last values) of a SpatRaster or of the attributes of a SpatVector.
Usage
head(x, ...)
tail(x, ...)
Arguments
x |
SpatRaster or SpatVector |
... |
additional arguments passed on to other methods |
Value
matrix (SpatRaster) or data.frame (SpatVector)
See Also
Examples
r <- rast(nrows=25, ncols=25)
values(r) <- 1:ncell(r)
head(r)
tail(r)
[Package terra version 1.7-78 Index]