This R markdown analizes crime throughout 2009-2017 in Atlanta.
library(readr)
library(dplyr)
library(DT)
library(leaflet)
library(ggplot2)
library(ggrepel)
library(scales)
Load data with readr and read_csv()
df <- read_csv("C:/Users/micae/Documents/dataset/atlcrime.csv")
colnames(df)
## [1] "X1" "crime" "number" "date" "location"
## [6] "beat" "neighborhood" "npu" "lat" "long"
datatable(df, options = list(pageLength = 5,scrollX='400px'))