knitr::opts_chunk$set(
  warning = FALSE,
  message = FALSE,
  collapse = TRUE,
  comment = "#>"
)

gfplot: An R package for data extraction and plotting of British Columbia groundfish data

R-CMD-check

Facilitates the creation of an annual groundfish data synopsis report with gfsynopsis.

Note that the documentation is incomplete in some places. Please post in the issue tracker if you have questions or suggestions on how the package or its documentation could be improved.

In addition to the help available through the R console, a web version of the documentation is available.

Installation

The gfplot package can then be installed and loaded with:

# install.packages("remotes")
remotes::install_github("pbs-assess/gfplot")
library(gfplot)

Functions specific to PBS (now in gfdata):

library(gfdata)
fns <- ls("package:gfdata")
sort(fns[grepl("get", fns)])

Generic functions for any similarly formatted data:

fns <- ls("package:gfplot")
sort(fns[grepl("tidy", fns)])
sort(fns[grepl("fit", fns)])
sort(fns[grepl("plot", fns)])


seananderson/gfplot documentation built on April 5, 2024, 6:29 a.m.