-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
60 lines (44 loc) · 1.45 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
output: github_document
---
```{r echo=FALSE}
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
<!-- badges: start -->
[![R-CMD-check](https://github.com/pbs-assess/gfplot/workflows/R-CMD-check/badge.svg)](https://github.com/pbs-assess/gfplot/actions)
<!-- badges: end -->
Facilitates the creation of an annual groundfish data synopsis report with [gfsynopsis](https://github.com/pbs-assess/gfsynopsis).
Note that the documentation is incomplete in some places. Please post in the [issue tracker](https://github.com/pbs-assess/gfplot/issues) 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](https://pbs-assess.github.io/gfplot/index.html).
# Installation
The gfplot package can then be installed and loaded with:
```{r, eval=FALSE}
# install.packages("remotes")
remotes::install_github("pbs-assess/gfplot")
```
```{r}
library(gfplot)
```
Functions specific to PBS (now in gfdata):
```{r}
library(gfdata)
fns <- ls("package:gfdata")
sort(fns[grepl("get", fns)])
```
Generic functions for any similarly formatted data:
```{r}
fns <- ls("package:gfplot")
sort(fns[grepl("tidy", fns)])
```
```{r}
sort(fns[grepl("fit", fns)])
```
```{r}
sort(fns[grepl("plot", fns)])
```