Replace | R Documentation |
A function that replaces a Stock, Fleet, Obs, or Imp object from an OM with one from another object.
Replace(
OM,
from,
Sub = c("Stock", "Fleet", "Obs", "Imp"),
Name = NULL,
silent = FALSE
)
OM |
An operating model object (class OM) which will be updated with a sub-model from another OM |
from |
An object of class |
Sub |
A character string specifying what object type to replace (only used if |
Name |
Character. Name for the new OM object ( |
silent |
Should messages be printed? |
An object of class OM
A. Hordyk
# Replace Stock
OM <- MSEtool::testOM
OM2 <- Replace(OM, Blue_shark)
# Replace Fleet
OM <- MSEtool::testOM
OM2 <- Replace(OM, Generic_DecE)
# Replace Fleet from another OM
# OM1 <- new("OM", Albacore, Generic_DecE, Perfect_Info, Overages)
# OM2 <- new("OM", Blue_shark, Generic_IncE, Generic_Obs, Perfect_Imp)
# OM1a <- Replace(OM1, OM2, "Fleet")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.