project_names | R Documentation |
Extract the names of the projects in an object.
project_names(x) ## S4 method for signature 'ProjectProblem' project_names(x)
x |
ProjectProblem. |
character
project names.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.