-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
50 lines (36 loc) · 1008 Bytes
/
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# lakeontario
<!-- badges: start -->
<!-- badges: end -->
The goal of `lakeontario` is to provide a suite of R tools and templates to support fisheries data collection and analysis on Lake Ontario.
## Installation
You can install `lakeontario` from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("HoldenJe/lakeontario")
```
## Example
A basemap of the Lake Ontario shoreline shapefile is stored as a base ggplot object.
```{r example}
library(lakeontario)
base_ontarioshore
```
File templates for Rmarkdown documents.
```{r example2, eval=FALSE}
usethis::use_template(
template = "multiagent.Rmd",
save_as = file.path("Reports/2_FEED_pointblank_error_check_report.Rmd"),
package = "lakeontario"
)
```