-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
49 lines (33 loc) · 795 Bytes
/
README.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
49
---
title: "Cleaning freeCodeCamp's 2018 New Coder Survey Data"
author: "Eric Leung"
date: 2018-09-01
output: github_document
---
**Contents**
- [Introduction](#introduction)
- [Prerequisites](#prerequisites)
- [Usage](#usage)
- [Repository Structure](#repository-structure)
## Introduction
## Prerequisites
- R (>= 3.5.0)
- tidyverse
## Usage
To reproduce data download and cleaning, run the following.
```sh
# Download raw data
make download
# Create exploratory data analysis report
make eda
# Perform cleaning and munging
make cleaning
```
## Exploratory Analysis
You can find my exploratory analysis of the raw data [here][eda].
[eda]: https://erictleung.com/2018-new-coder-survey/explore-data.nb.html
## Session Information
```{r}
sessionInfo()
```
## Repository Structure