plotRGB(x, r=1, g=2, b=3, scale=255, maxpixels=500000, extent=NULL, ...)
x
a RasterBrick or RasterStack object
r
Integer. Index of the Red channel, between 1 and nlayers(x)
g
Integer. Index of the Green channel, between 1 and nlayers(x)
b
Integer. Index of the Blue channel, between 1 and nlayers(x)
scale
Integer. Maximum (possible) value in the three channels
maxpixels
Maximum number of pixels to use
extent
An extent object to zoom in a region
...
Any argument that can be passed to image
(graphics package)
}plot
b <- brick(system.file("external/rlogo.grd", package="raster"))
plotRGB(b)
plotRGB(b, 3, 2, 1)
Run the code above in your browser using DataLab