Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmlondon/crawl-workshop
slides, data, code and a book in support of workshops at AFSC and SWFSC for the R package `crawl`
https://github.com/jmlondon/crawl-workshop
afsc-mml animal-movement ecology statistics telemetry-data
Last synced: about 18 hours ago
JSON representation
slides, data, code and a book in support of workshops at AFSC and SWFSC for the R package `crawl`
- Host: GitHub
- URL: https://github.com/jmlondon/crawl-workshop
- Owner: jmlondon
- Created: 2017-01-23T22:52:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T04:59:25.000Z (about 6 years ago)
- Last Synced: 2024-01-30T05:34:33.154Z (9 months ago)
- Topics: afsc-mml, animal-movement, ecology, statistics, telemetry-data
- Language: TeX
- Homepage: https://jmlondon.github.io/crawl-workshop/
- Size: 16 MB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```## crawl-workshop
slides, data and code in support of workshops at AFSC and SWFSC for the R package `crawl`### Logistics and Schedule
14-16 February, 2017
9am - 5pm
MML Conference Room, 2039
NOAA Western Regional Center
Alaska Fisheries Science Center (Bldg 4)
7600 Sand Point Way NE, Seattle, WA[Identification Requirements for Accessing the WRC](http://www.wrc.noaa.gov/NewIdRequirements.htm)
Nearest Hotel:
[Silver Cloud (University)](https://www.silvercloud.com/university/)### Workshop Agenda
#### Day 1:
1. Introductions/Why are you here?
1. The Theory of Crawling (Devin Johnson)
1. Lunch
1. Practical Guide to Crawling (Josh London)#### Day 2:
1. Hands-on w/ example datasets#### Day 3:
1. BYODHF (Bring Your Own Data, Have Fun)### What To Bring and Have Installed
1. A laptop computer with the following software installed
1. R 3.3.2
1. RStudio 1.0.136
1. (Windows users) [RTools34](https://cran.r-project.org/bin/windows/Rtools/)
1. The following R packages from CRAN: `devtools`, `tidyverse`, `lubridate`, `sp`, `raster`, `argosfilter`, `doParallel`, `xts` (see below for installation code)
1. THe following R packages installed from github: `crawl`, `crawlr`, `nPacMaps`
1. AFSC staff should work with IT to insure they are signed up for the EduRoam campus wifi network. Visitors will use the NOAA Guest wifi.
1. A healthy does of curiosity and patience. This will be the first time teaching this workshop, so it won't be perfect### Installation of R Packages
```{r, r-package-install, eval=FALSE}
library(devtools)devtools::install_github("NMML/crawl",ref = "devel")
devtools::install_github("jmlondon/nPacMaps")
devtools::install_github("jmlondon/crawlr")
devtools::install_github("jmlondon/wcUtils", ref = "develop")pkgs <- c(
"tidyverse",
"lubridate",
"sp",
"raster",
"doParallel",
"argosfilter"
)install.packages(pkgs = pkgs)
```##### Disclaimer
This repository is a scientific product and is not official communication of the Alaska Fisheries Science Center, the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All AFSC Marine Mammal Laboratory (AFSC-MML) GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. AFSC-MML has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality, or availability of the information. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.