-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbayesian_project.Rmd
More file actions
73 lines (47 loc) · 1.52 KB
/
bayesian_project.Rmd
File metadata and controls
73 lines (47 loc) · 1.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: "Bayesian modeling and prediction for movies"
output:
html_document:
fig_height: 4
highlight: pygments
theme: spacelab
---
## Setup
### Load packages
```{r load-packages, message = FALSE}
library(ggplot2)
library(dplyr)
library(statsr)
library(BAS)
```
### Load data
Make sure your data and R Markdown files are in the same directory. When loaded
your data file will be called `movies`. Delete this note when before you submit
your work.
```{r load-data}
#load("movies.Rdata")
```
* * *
## Part 1: Data
* * *
## Part 2: Data manipulation
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button above. Make sure that your code is visible in the project you submit.
Delete this note when before you submit your work.
* * *
## Part 3: Exploratory data analysis
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button above. Make sure that your code is visible in the project you submit.
Delete this note when before you submit your work.
* * *
## Part 4: Modeling
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button above. Make sure that your code is visible in the project you submit.
Delete this note when before you submit your work.
* * *
## Part 5: Prediction
NOTE: Insert code chunks as needed by clicking on the "Insert a new code chunk"
button above. Make sure that your code is visible in the project you submit.
Delete this note when before you submit your work.
* * *
## Part 6: Conclusion