-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathintro_data_prob_project.Rmd
More file actions
76 lines (42 loc) · 1022 Bytes
/
intro_data_prob_project.Rmd
File metadata and controls
76 lines (42 loc) · 1022 Bytes
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
title: "Exploring the BRFSS data"
output:
html_document:
fig_height: 4
highlight: pygments
theme: spacelab
---
## Setup
### Load packages
```{r load-packages, message = FALSE}
library(ggplot2)
library(dplyr)
```
### Load data
Make sure your data and R Markdown files are in the same directory. When loaded
your data file will be called `brfss2013`. Delete this note when before you submit
your work.
```{r load-data}
#load("brfss2013.RData")
```
* * *
## Part 1: Data
* * *
## Part 2: Research questions
**Research quesion 1:**
**Research quesion 2:**
**Research quesion 3:**
* * *
## 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.
**Research quesion 1:**
```{r}
```
**Research quesion 2:**
```{r}
```
**Research quesion 3:**
```{r}
```