Skip to content

DACSS/course_blog_template_old

Repository files navigation

The process to submit assignments for students

  • Open RStudio

  • Make a new R Markdown file from

Make a new RMD file

  • Select Empty Document

Create Empty Document

  • This is the file you shoulld get when you make a new RMD file.

New 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)
```

Setup the file

  • Edit the title, description and author 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!

The process to submit assignments for students

  • Open RStudio

  • Make a new R Markdown file from

Make a new RMD file

  • Select Empty Document

Create Empty Document

  • This is the file you shoulld get when you make a new RMD file.

New 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)
```

Setup the file

  • Edit the title, description and author 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!