-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport_r.Rmd
49 lines (31 loc) · 1.09 KB
/
report_r.Rmd
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
44
45
46
47
48
---
title: "Student enrollment"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
Brief overview of project.
## About the data
These data represent student enrollment in 200 different courses throughout ten years.
Here is some extra information about the assumptions I made when analyzing these data,
as well as information about what would've improved my ability to use it.
## Are all classes present across the entirety of the timeframe?
Brief introduction to the question and why it's important
```{r}
# data parsing and manipulation
# data visualization
```
## What is the average enrollment in the largest 10 classes across ten years?
Brief introduction to the question and why it's important
```{r}
# data parsing and manipulation
```
Explanation of data filtering
```{r}
# data visualization
```
Interpretation of results, answering question
## Reproducibility
This section includes comments on the ease of reproducibility of my analysis and the analysis in the original paper,
which reflects on the concepts covered in the first few weeks of class.