Skip to content

Commit

Permalink
update logistics md
Browse files Browse the repository at this point in the history
  • Loading branch information
dpseidel committed Jan 22, 2018
1 parent 56bbc1e commit cd49e84
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 205 deletions.
16 changes: 8 additions & 8 deletions Logisitics&Prep.Rmd
@@ -1,14 +1,12 @@
---
title: "Preparation & Installation Instructions"
author: "Dana Seidel"
date: "1/12/2018"
output: html_document
output: github_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Instructions before the workshop
## Instructions before the workshop
Please make sure you have installed:

- [R (version 3.3.0 or higher)](https://www.r-project.org/)
Expand All @@ -27,23 +25,25 @@ Please make sure you have installed:
- lme4
- glmer

## Installation Instructions:
### Installation Instructions:
Inside the Rstudio console, you can install packages using the function `install.packages()`.

You can install packages one at a time using their name in quotes: `install.packages("raster")`

OR you can install multiple at one time using the `c()` function to combine all your names into one character vector:` install.packages(c("raster", "tidyverse", "sf"))`.
OR

you can install multiple at one time using the `c()` function to combine all your names into one character vector:` install.packages(c("raster", "tidyverse", "sf"))`.

**Keep an eye out for errors that may mean one or multiple packages are failing to load.**

*For the developer's versions, you will need to use the `devtools` package to download the most up to date versions from github.
* For the developer's versions, you will need to use the `devtools` package to download the most up to date versions from github.
This is very similar to the base `install.packages()` function except we have to give it more specific path names e.g.:
- `devtools::install_github("tidyverse/ggplot2")`

** The tlocoh package is found on R-forge so the installation function must be adapted to the following: `install.packages("tlocoh", dependencies=T, repos=c("http://R-Forge.R-project.org"))`


# Downloading Individual Files from github
## Downloading Individual Files from github

If you want to download individual files during the workshop, We suggest you adapt and use the following code structure from R:

Expand Down
197 changes: 0 additions & 197 deletions Logisitics_Prep.html

This file was deleted.

51 changes: 51 additions & 0 deletions Logisitics_Prep.md
@@ -0,0 +1,51 @@
Preparation & Installation Instructions
================

Instructions before the workshop
--------------------------------

Please make sure you have installed:

- [R (version 3.3.0 or higher)](https://www.r-project.org/)
- [Rstudio](https://www.rstudio.com/products/rstudio/download/#download)
- The following packages:
- tidyverse
- lubridate
- sf
- ggplot2 (\*developer's version)
- mapview
- tlocoh \*\*
- adehabitatLT
- adehabitatHR
- move
- raster
- lme4
- glmer

### Installation Instructions:

Inside the Rstudio console, you can install packages using the function `install.packages()`.

You can install packages one at a time using their name in quotes: `install.packages("raster")`

OR

you can install multiple at one time using the `c()` function to combine all your names into one character vector:`install.packages(c("raster", "tidyverse", "sf"))`.

**Keep an eye out for errors that may mean one or multiple packages are failing to load.**

- For the developer's versions, you will need to use the `devtools` package to download the most up to date versions from github. This is very similar to the base `install.packages()` function except we have to give it more specific path names e.g.:
- `devtools::install_github("tidyverse/ggplot2")`

\*\* The tlocoh package is found on R-forge so the installation function must be adapted to the following: `install.packages("tlocoh", dependencies=T, repos=c("http://R-Forge.R-project.org"))`

Downloading Individual Files from github
----------------------------------------

If you want to download individual files during the workshop, We suggest you adapt and use the following code structure from R:

`download.file("rawgithub_hyperlink", "destination_file_name")`

OR

consider using [DownGit](https://minhaskamal.github.io/DownGit/#/home) to download a specific folder or file.

0 comments on commit cd49e84

Please sign in to comment.