amount.held {raptr} | R Documentation |
Extract amount held for a solution
Description
This function returns the amount held for each species in a solution.
Usage
amount.held(x, y, species)
## S3 method for class 'RapSolved'
amount.held(x, y = 0, species = NULL)
Arguments
x |
|
y |
Available inputs include: |
species |
|
Value
base::matrix()
or numeric
vector depending on
arguments.
See Also
Examples
## Not run:
# load data
data(sim_rs)
# amount held (%) in best solution for each species
amount.held(sim_rs, 0)
# amount held (%) in best solution for species 1
amount.held(sim_rs, 0, 1)
# amount held (%) in second solution for each species
amount.held(sim_rs, 2)
# amount held (%) in each solution for each species
amount.held(sim_rs, NULL)
## End(Not run)
[Package raptr version 1.0.1 Index]