forked from allisonhorst/bren-206-244-github-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_github.Rmd
More file actions
28 lines (18 loc) · 750 Bytes
/
Copy pathtest_github.Rmd
File metadata and controls
28 lines (18 loc) · 750 Bytes
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
---
title: "ESM 206/244 GitHub Testing"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
Type your name (or anything else) HERE:
Here's some code (change the variable names and values):
```{r}
# Change these variable names and values:
blue <- 10
red <- 15
purple <- blue/red
```
After making minimal changes, SAVE this .Rmd (default will be to the project folder, but check to make sure).
Notice that if you click on the 'Git' tab (up by the Environment tab), now your newly created Project (.Rproj) and updated .Rmd are there (along with, probably, a gitignore file that you don't really need to worry about).
Stage, commit, and push your updates back to github (see the step-by-step document).