sim_data | R Documentation |
Simulated data for prioritizing conservation projects.
data(sim_actions) data(sim_projects) data(sim_features) data(sim_tree)
tibble::tibble()
object.
tibble::tibble()
object.
tibble::tibble()
object.
ape::phylo()
object.
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.
ape::phylo()
phylogenetic tree for the features.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.