-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpset_template.Rmd
More file actions
43 lines (33 loc) · 1.14 KB
/
pset_template.Rmd
File metadata and controls
43 lines (33 loc) · 1.14 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
title: "Markdown Headers"
author: "Yuxi Wu"
date: "29/03/2020"
output:
html_document:
number_sections: yes
pdf_document: default
---
```{r message=FALSE, warning=FALSE}
library(tidyverse)
```
<!-- .Rmd files use markdown, a text mark up language, to provide formating.-->
<!--Text include within these strange arrows are comments and will not show up when you knit-->
**Front matter**
This submission is my work alone and complies with the 30535 integrity policy.
Add your initials to indicate your agreement: **__**
Add your collaborators: **__**
Late coins used this pset: X. Late coins left: X.
<!--Please update. You may use up to two for a given assignment. Note we added 5 late coins for a total of 9 for the quarter.)-->
# Problems
## You change section heading goes here
<!--(Notice the use of two `##` followed by a space. )-->
1. YOUR TEXT ANSWER GOES HERE (Please delete)
```{r}
# YOUR CODE GOES HERE (Please delete)
ggplot(mpg, aes(manufacturer)) + geom_bar()
```
1. YOUR TEXT ANSWER GOES HERE (Please delete)
```{r}
# YOUR CODE GOES HERE (Please delete)
ggplot(mtcars, aes(factor(cyl), mpg)) + geom_violin(aes(fill=mpg))
```