selections: Extract solution selections

View source: R/generics.R

selectionsR Documentation

Extract solution selections

Description

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

Usage

selections(x, y)

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

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

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.

Value

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

See Also

RapResults(), RapSolved().

Examples

## Not run: 
# 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)

## End(Not run)

paleo13/rapr documentation built on Feb. 12, 2024, 3:27 a.m.