-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstat_inf_project.Rmd
More file actions
57 lines (36 loc) · 1.09 KB
/
stat_inf_project.Rmd
File metadata and controls
57 lines (36 loc) · 1.09 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: "Statistical inference with the GSS data"
output:
html_document:
fig_height: 4
highlight: pygments
theme: spacelab
---
## Setup
### Load packages
```{r load-packages, message = FALSE}
library(ggplot2)
library(dplyr)
library(statsr)
```
### Load data
Make sure your data and R Markdown files are in the same directory. When loaded
your data file will be called `gss`. Delete this note when before you submit
your work.
```{r load-data}
#load("gss.Rdata")
```
* * *
## Part 1: Data
* * *
## Part 2: Research question
* * *
## Part 3: Exploratory data analysis
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button (green button with orange arrow) above. Make sure that your code is visible
in the project you submit. Delete this note when before you submit your work.
* * *
## Part 4: Inference
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button (green button with orange arrow) above. Make sure that your code is visible
in the project you submit. Delete this note when before you submit your work.