headtail function

head and tail of a SpatRaster or SpatVector

head and tail of a SpatRaster or SpatVector

Show the head (first values) or tail (last values) of a SpatRaster or of the attributes of a SpatVector. methods

head(x, ...) tail(x, ...)

Arguments

  • x: SpatRaster or SpatVector
  • ...: additional arguments passed on to other methods

Returns

matrix (SpatRaster) or data.frame (SpatVector)

See Also

show, geom

Examples

r <- rast(nrows=25, ncols=25) values(r) <- 1:ncell(r) head(r) tail(r)
  • Maintainer: Robert J. Hijmans
  • License: GPL (>= 3)
  • Last published: 2025-04-02