Skip to content

Commit

Permalink
Added Rpoj and first rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzdAldrin committed Nov 23, 2017
1 parent fbd7477 commit 2f38183
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Baltimore_Crime.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX
26 changes: 26 additions & 0 deletions initial_exploration.rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "initial_exploration"
author: "Jason Hammett"
date: "November 22, 2017"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
#Install function courtesy of CSCI 349
my.install <- function(pkg){
if (!(pkg %in% installed.packages()[,1])){
install.packages(pkg)
}
return (require(pkg, character.only=TRUE))
}
```

## Baltimore Crime
### Initial Exploration

```{r}
arrests <- read.csv("Data/BPD_Arrests.csv")
```

0 comments on commit 2f38183

Please sign in to comment.