plotPred {SDMtune} | R Documentation |
Plot Prediction
Description
Plot Prediction output.
Usage
plotPred(map, lt = "", colorramp = NULL, hr = FALSE)
Arguments
map |
rast object with the prediction. |
lt |
character. Legend title. |
colorramp |
vector. A custom colour ramp given as a vector of colours
(see example), default is |
hr |
logical. If |
Value
A ggplot object.
Author(s)
Sergio Vignali
See Also
Examples
map <- terra::rast(matrix(runif(400, 0, 1),
nrow = 20,
ncol= 20))
plotPred(map,
lt = "Habitat suitability \ncloglog")
# Custom colors
plotPred(map,
lt = "Habitat suitability",
colorramp = c("#2c7bb6", "#ffffbf", "#d7191c"))
[Package SDMtune version 1.3.1 Index]