ecodata.Rmd
Each data set in the ecodata
package is documented in
the reference
section. Many of the data sets have a similar structure. They are in
long format and ggplot2
can be used to quickly view
them.
For figures as seen in the SOE reports please visit the indicator catalog
ggplot(data = ecodata::aquaculture) +
geom_line(aes(x=Time,y=Value,color=as.factor(Region))) +
facet_wrap(vars(Var),scales = "free_y")
ggplot(data = ecodata::zoo_diversity) +
geom_line(aes(x=Time,y=Value,color=as.factor(EPU))) +
facet_wrap(vars(Var),scales = "free_y")