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