Historical Advice

To provide an overview of MRI advice for all stocks in all years, Arni Magnusson has compiled and merged all the advice tables from the 2015 report:

State of marine stocks in Icelandic waters 2014/2015 and prospects for the quota year 2015/2016.
T. Sigurdsson, A. Magnusson, B. Bardarson, J. Solmundsson, and S.T. Jonsson (eds.)
Marine Research in Iceland 182. (English version here)

Import and plot in R

The table of historical advice is available for download. Alternatively, the dataset can be imported directly from the web server, using software like R:

advice <- read.csv("http://data.hafro.is/assmt/history/advice.csv")
matplot(advice$Year, advice[-1], type="l", log="y")


back