-
Open RStudio
-
Make a new R Markdown file from
- Select Empty Document
- This is the file you shoulld get when you make a new RMD file.
- Setup the file by adding this to your empty file:
---
title: "THE TITLE"
description: "SOME DESCRIPTION"
author: "YOUR NAME"
date: "`r Sys.Date()`"
output: distill::distill_article
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
-
Edit the
title
,description
andauthor
fields. -
Feel free to add your R code now.
-
Publish the notebook on RPubs.
-
Submit the link to the google form provided by the course instructor.
-
You are all set!
-
Open RStudio
-
Make a new R Markdown file from
- Select Empty Document
- This is the file you shoulld get when you make a new RMD file.
- Setup the file by adding this to your empty file:
---
title: "THE TITLE"
description: "SOME DESCRIPTION"
author: "YOUR NAME"
date: "`r Sys.Date()`"
output: distill::distill_article
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
-
Edit the
title
,description
andauthor
fields. -
Feel free to add your R code now.
-
Publish the notebook on RPubs.
-
Submit the link to the google form provided by the course instructor.
-
You are all set!