project_names {oppr} | R Documentation |
Project names
Description
Extract the names of the projects in an object.
Usage
project_names(x)
## S4 method for signature 'ProjectProblem'
project_names(x)
Arguments
x |
Value
character
project names.
Examples
# load data
data(sim_projects, sim_features, sim_actions)
# build problem with default solver
p <- problem(sim_projects, sim_actions, sim_features,
"name", "success", "name", "cost", "name") %>%
add_max_richness_objective(budget = 200) %>%
add_binary_decisions() %>%
add_default_solver()
# print problem
print(p)
# print project names
project_names(p)
[Package oppr version 1.0.4 Index]