as.raster | R Documentation |
Implementation of the generic as.raster
function to create a 'raster' (small r) object. NOT TO BE CONFUSED with the Raster* (big R) objects defined by the raster package! Such objects can be used for plotting with the rasterImage
function.
as.raster(x, ...)
x |
RasterLayer object |
... |
Additional arguments.
|
'raster' object
r <- raster(ncol=3, nrow=3)
values(r) <- 1:ncell(r)
as.raster(r)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.