Learn R Programming

raptr (version 1.0.1)

selections: Extract solution selections

Description

Extract selections for a given solution from a RapResults() or RapSolved() object.

Usage

selections(x, y)

# S3 method for RapResults selections(x, y = 0)

# S3 method for RapSolved selections(x, y = 0)

Value

base::matrix() or numeric vector depending on arguments.

Arguments

x

RapResults() or RapSolved() object.

y

NULL to return all values, integer 0 to return values for the best solution, integer value greater than 0 for y'th solution value.

See Also

RapResults(), RapSolved().

Examples

Run this code
if (FALSE) {
# load data
data(sim_rs)

# selections for the best solution
selections(sim_rs, 0)

# selections for the second solution
selections(sim_rs, 2)

# selections for each solution
selections(sim_rs)
}

Run the code above in your browser using DataLab