| simulate_feature_data {surveyvoi} | R Documentation |
Simulate feature data
Description
Simulate feature data for developing simulated survey schemes.
Usage
simulate_feature_data(n_features, proportion_of_survey_features = 1)
Arguments
n_features |
|
proportion_of_survey_features |
|
Value
A tibble::tibble() object. It contains the following
data:
namecharactername of each feature.surveylogical(TRUE/FALSE) values indicating if each feature should be examined in surveys or not.survey_sensitivitynumericsensitivity (true positive rate) of the survey methodology for each features.survey_specificitynumericspecificity (true negative rate) of the survey methodology for each features.model_sensitivitynumericspecificity (true positive rate) of the occupancy models for each features.model_specificitynumericspecificity (true negative rate) of the occupancy models for each features.targetnumerictarget values used to parametrize the conservation benefit of managing of each feature (defaults to 1).
See Also
Examples
# set seed for reproducibility
set.seed(123)
# simulate data
d <- simulate_feature_data(n_features = 5,
proportion_of_survey_features = 0.5)
# print data
print(d, width = Inf)