sim_data {oppr} | R Documentation |
Simulated data
Description
Simulated data for prioritizing conservation projects.
Usage
data(sim_actions)
data(sim_projects)
data(sim_features)
data(sim_tree)
Format
- sim_projects
tibble::tibble()
object.- sim_actions
tibble::tibble()
object.- sim_features
tibble::tibble()
object.- sim_tree
ape::phylo()
object.
Details
The data set contains the following objects:
sim_projects
A
tibble::tibble()
object containing data for six simulated conservation projects. Each row corresponds to a different project and each column contains information about the projects. This table contains the following columns:"name"
character
name for each project."success"
numeric
probability of each project succeeding if it is funded."F1"
..."F5"
numeric
columns for each feature (i.e."F1"
,"F2"
,"F3"
,"F4"
,"F5"
, indicating the enhanced probability that each feature will survive if it funded. Missing values (NA
) indicate that a feature does not benefit from a project being funded."F1_action"
..."F5_action"
logical
columns for each action, ranging from"F1_action"
to"F5_action"
indicating if an action is associated with a project (TRUE
) or not (FALSE
)."baseline_action"
logical
column indicating if a project is associated with the baseline action (TRUE
) or not (FALSE
). This action is only associated with the baseline project.
sim_actions
A
tibble::tibble()
object containing data for six simulated actions. Each row corresponds to a different action and each column contains information about the actions. This table contains the following columns:"name"
character
name for each action."cost"
numeric
cost for each action."locked_in"
logical
indicating if certain actions should be locked into the solution."locked_out"
logical
indicating if certain actions should be locked out of the solution.
sim_features
A
tibble::tibble()
object containing data for five simulated features. Each row corresponds to a different feature and each column contains information about the features. This table contains the following columns:"name"
character
name for each feature."weight"
numeric
weight for each feature.
- tree
ape::phylo()
phylogenetic tree for the features.
Examples
# load data
data(sim_projects, sim_actions, sim_features, sim_tree)
# print project data
print(sim_projects)
# print action data
print(sim_actions)
# print feature data
print(sim_features)
# plot phylogenetic tree
plot(sim_tree)