This function accepts a RapUnsolved()
object and returns a
data.frame
containing the amount-based and space-based targets for
each species and attribute space. These are calculated using a
prioritization that contains all the available planning units. Note that the
maximum amount-based targets are always 1.
maximum.targets(x, verbose)
# S3 method for RapUnsolOrSol
maximum.targets(x, verbose = FALSE)
RapUnsolved()
or RapSolved()
object.
logical
should messages be printed during
calculations? Defaults to FALSE
.
data.frame
object.
# \dontrun{
# load RapSolved objects
data(sim_ru)
# calculate maximum metrics
maximum.targets(sim_ru)
#> species target proportion
#> 1 1 1 1
#> 2 2 1 1
#> 3 3 1 1
# }