Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
More renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddelkoop committed May 22, 2024
1 parent 6f32913 commit 9de26cc
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
8 changes: 1 addition & 7 deletions prep/RStudio.Rmd → prep/Preparation-RStudio.Rmd
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
---
title: "Lesson Preparation"
output: html_document
editor_options:
chunk_output_type: console
---
See [Setup.Rmd](Setup.Rmd) for setting up RStudio environment..

# R Ecology

## Install Packages

```{r message=FALSE, warning=FALSE}
options(repos = list(CRAN="http://cran.rstudio.com/"))
install.packages(c("tidyverse", "lubridate", "ratdat"))
```
Run the (Setup.Rmd)[Setup.Rmd] RStudio notebook once.

## Load

Expand Down
23 changes: 23 additions & 0 deletions prep/Setup.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
output: html_document
editor_options:
chunk_output_type: console
---
# Setup RStudio

Run this Notebook once in an environment to install packages.

Configure mirror
```{r message=FALSE, warning=FALSE}
options(repos = list(CRAN="http://cran.rstudio.com/"))
```

Setup basic packages
```{r message=FALSE, warning=FALSE}
install.packages(c("tidyverse", "lubridate", "ratdat"))
```

Packages from Lesson 1
```{r message=FALSE, warning=FALSE}
install.packages("ggplot2")
```

0 comments on commit 9de26cc

Please sign in to comment.