plot_sumrast {prior3D} | R Documentation |
Plot sum list of SpatRaster objects.
Description
Plot sum list of SpatRaster objects.
Usage
plot_sumrast(x, normalize = TRUE, add_lines = TRUE, ...)
Arguments
x |
List of SpatRaster objects. |
normalize |
If |
add_lines |
If |
... |
Further arguments passed to terra::plot |
Value
A plot.
See Also
Examples
set.seed(42)
x <- terra::rast(matrix(rbinom(100, 1, 0.2), nrow=10))
y <- terra::rast(matrix(rbinom(100, 1, 0.8), nrow=10))
plot_sumrast(list(x, y), add_lines = FALSE)
[Package prior3D version 0.1.5 Index]