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