number_of_features: Number of features

number_of_featuresR Documentation

Number of features

Description

Extract the number of features in an object.

Usage

number_of_features(x)

## S4 method for signature 'ProjectProblem'
number_of_features(x)

## S4 method for signature 'OptimizationProblem'
number_of_features(x)

Arguments

x

ProjectProblem or OptimizationProblem object.

Value

integer number of features.

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 number of features
number_of_features(p)

oppr documentation built on Sept. 8, 2022, 5:07 p.m.