head | R Documentation |
Show the head (first rows/columns) or tail (last rows/columns) of the cell values of a Raster* object.
head(x, ...)
tail(x, ...)
x |
Raster* object |
... |
Additional arguments: |
matrix
getValuesBlock
r <- raster(nrow=25, ncol=25)
values(r) = 1:ncell(r)
head(r)
tail(r, cols=10, rows=5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.