-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.Rmd
61 lines (42 loc) · 2.51 KB
/
index.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
---
title: "Applied Time Series Analysis for Fisheries and Environmental Sciences"
author: "E. E. Holmes, M. D. Scheuerell, and E. J. Ward"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
fontsize: 12pt
documentclass: book
bibliography: [tex/Fish507.bib, tex/book.bib, tex/packages.bib]
biblio-style: apalike
link-citations: yes
description: "These are the computer labs for Fish 507: Applied Time Series Analysis for Fisheries and Environmental Sciences."
cover-image: images/cover.png
favicon: "favicon.ico"
---
# Preface {-}
```{r RUNFIRST, echo=FALSE}
knitr::opts_chunk$set(echo = TRUE, comment=NA, cache=TRUE, tidy.opts=list(width.cutoff=60), tidy=TRUE, fig.align='center', out.width='80%')
```
This is material that was developed as part of a course we teach at the University of Washington on applied time series analysis for fisheries and environmental data. You can find our lectures on our course website [ATSA](https://nwfsc-timeseries.github.io/atsa/).
### Book package {-}
The book uses a number of R packages and a variety of fisheries data sets. The packages and data sets can be installed by installing our **atsalibrary** package which is hosted on GitHub:
```{r preface-load-atsa, eval=FALSE}
library(devtools)
# Windows users will likely need to set this
# Sys.setenv("R_REMOTES_NO_ERRORS_FROM_WARNINGS" = "true")
devtools::install_github("nwfsc-timeseries/atsalibrary")
```
### Authors {-}
Links to more code and publications can be found on our academic websites at the University of Washington:
* Elizabeth Eli Holmes http://faculty.washington.edu/eeholmes
* Mark D. Scheuerell http://faculty.washington.edu/scheuerl
* Eric J. Ward http://faculty.washington.edu/warde
### Citation {-}
Holmes, E. E., M. D. Scheuerell, and E. J. Ward. Applied time series analysis for fisheries and environmental data. Edition 2021. Contacts [email protected], [email protected], and [email protected]
### License {-}
This book was developed by United States federal government employees as part of their official duties. As such, it is not subject to copyright protection and is considered “public domain” (see 17 USC § 105). Public domain works can be used by anyone for any purpose, and cannot be released under a copyright license. *However if you use our work, please cite it and give proper attribution.*
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
'rstan','MARSS','forecast','ggplot2','R2jags','rjags','bookdown', 'knitr', 'rmarkdown','urca','tseries'
), 'tex/packages.bib')
```