Skip to content
Arni Magnusson edited this page Oct 3, 2017 · 6 revisions

Examples

Extract data category of all stocks from 2017

## install.packages("devtools")
## devtools::install_github("ices-tools-prod/icesSD")

library(icesSD)
sd <- getSD()
cats <- sd[sd$ActiveYear==2017,
           c("SpeciesCommonName","StockKeyLabel","DataCategory","ExpertGroup")]
rownames(cats) <- NULL
cats
Clone this wiki locally