Skip to contents

plot and summary functions for retro object.

Usage

# S4 method for class 'retro,missing'
plot(x, color = NULL)

# S4 method for class 'retro'
summary(object, na.rm = FALSE)

Arguments

x

An object of class retro.

color

An optional character vector of colors for plotting.

object

An object of class retro.

na.rm

Logical, whether NA values should be excluded from Mohn's rho calculation

Value

A series of plots showing retrospective patterns in fishing mortality, spawning biomass, recruitment, etc.

Author

Q. Huynh

Examples

# \donttest{
res <- SP(Data = swordfish)
ret <- retrospective(res, figure = FALSE)

summary(ret)
#>                   Mohn's rho
#> Fishing mortality      0.130
#> F/F[MSY]              -0.145
#> Biomass               -0.091
#> B/B[MSY]               0.152
#> B/B[0]                 0.152
plot(ret)





# }