summary method for fwdControl
# S4 method for fwdControl
summary(object)
fwdControl object to show summary of
summary(object)
control <- fwdControl(data.frame(year=rep(2010:2015, each=2),
quant=c("f", "catch"), min=c(rbind(NA, 20000)), max=c(rbind(NA, 30000)),
value=c(rbind(seq(1, 1.3, length=6), NA))))
summary(control)
#> An object of class 'fwdControl' with:
#>
#> quant 2010 2011 2012 2013 2014 2015
#> f 1 1.06 1.12 1.18 1.24 1.3
#> catch > 20000 20000 20000 20000 20000 20000
#> catch < 30000 30000 30000 30000 30000 30000