# NOT RUN {
# load data
data(sim_pu_raster, sim_features)
# create base problem
p <- problem(sim_pu_raster, sim_features) %>%
add_min_set_objective() %>%
add_binary_decisions()
# create problem with added relative targets
p1 <- p %>% add_relative_targets(0.1)
# create problem with added absolute targets
p2 <- p %>% add_absolute_targets(3)
# create problem with added loglinear targets
p3 <- p %>% add_loglinear_targets(10, 0.9, 100, 0.2)
# create problem with manual targets that equate to 10% relative targets
p4 <- p %>% add_manual_targets(data.frame(feature = names(sim_features),
target = 0.1,
type = "relative"))
# }
# NOT RUN {
# solve problem
s <- stack(solve(p1), solve(p2), solve(p3), solve(p4))
# plot solution
plot(s, axes = FALSE, box = FALSE,
main = c("relative targets", "absolute targets", "loglinear targets",
"manual targets"))
# }
Run the code above in your browser using DataLab