-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.R
173 lines (158 loc) · 7.76 KB
/
server.R
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# define required libraries
require(shiny)
require(RCurl)
require(plyr)
# define a function to load data from google sheets
# the following is an expansion of the fetchGoogle function from the dev version of the mosaic package
# see http://goo.gl/hNUsdc
loadGoogSheet <- function(URL, key = NULL,
stringsAsFactors = default.stringsAsFactors(), na.strings = "NA",
colClasses = NA, blank.lines.skip = TRUE
)
{
#.try_require("RCurl")
if (missing(URL) & !is.null(key))
URL = paste("https://docs.google.com/spreadsheet/pub?key=",
key, "&single=TRUE&gid=0", "&output=csv", sep = "")
s = RCurl::getURLContent(URL)
foo = textConnection(s)
b = read.csv(foo,
stringsAsFactors = stringsAsFactors,
na.strings = na.strings,
colClasses = colClasses,
blank.lines.skip = blank.lines.skip
)
close(foo)
return(b)
}
# define the capWords function used to capitalize the words in a string
capWords <- function(s, strict = FALSE)
{
cap <- function(s) paste(toupper(substring(s, 1, 1)),
{s <- substring(s, 2); if(strict) tolower(s) else s},
sep = "", collapse = " " )
sapply(strsplit(s, split = " "), cap, USE.NAMES = !is.null(names(s)))
}
# ensure proper certs for loading a google doc
options(RCurlOptions = list(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl")))
# load the police shootings data which is sourced from this google document http://goo.gl/zUdwkg
# the google doc referenced in the line above comes from http://regressing.deadspin.com/were-compiling-every-police-involved-shooting-in-americ-1624180387
# note that this function will grow to include multiple data sources, next: http://www.fatalencounters.org/spreadsheets/
# eventually, I hope to include all forms of gun violence, not just those that are police generated, to do this I hope to incorporate data from http://gunviolencearchive.org/
url <- 'https://docs.google.com/spreadsheets/d/1cEGQ3eAFKpFBVq1k2mZIy5mBPxC6nBTJHzuSWtZQSVw/export?usp=sharing&format=csv'
shootings <- loadGoogSheet(url, stringsAsFactors = FALSE,
na.strings = c('', 'Unknown', 'unknown'),
colClasses = c('character', # timestampe
'character', # date searched
'factor', # state
'character', # county
'character', # city
'character', # agency name
'character', # victim's name
'numeric', # victim's age
'factor', # victim's gender
'factor', # race
'factor', # hispanic
'numeric', # shots fired
'factor', # hit or killed
'factor', # armed or unarmed
'character', # weapon
'character', # summary
'character', # source link
'character', # name of officer
'character', # shootings
'numeric', # was the shooting justified
'NULL', # receive updates
'NULL', # name of submitter
'NULL', # email address
'NULL', # twitter
'character', # date of incident
'NULL', # results page number
'factor' # x - (changed below) date completion
),
blank.lines.skip = TRUE
)
names(shootings) <- tolower(gsub('[.]', '', names(shootings)))
names(shootings) <- gsub('x', 'datecompletion', names(shootings), fixed = TRUE)
# convert dates to correct class
shootings$datesearched <- as.Date(shootings$datesearched, format = '%m/%d/%Y')
shootings$dateofincident <- as.Date(shootings$dateofincident, format = '%m/%d/%Y')
shootings$timestamp <- as.POSIXct(shootings$timestamp, format = '%m/%d/%Y %H:%M:%S')
# remove entries with dates that are greater than today's date
shootings <- shootings[!shootings$datesearched > Sys.Date(), ]
# remove shootings with NA in the datesearched column
shootings <- shootings[!is.na(shootings$datesearched), ]
cities <- read.csv('cities.csv') # geo code data from http://sujee.net/tech/articles/geocoded/
names(cities) <- c('city', 'state', 'latitude', 'longitude')
cities$city <- tolower(cities$city)
cities$state <- factor(cities$state)
# integrate geo code data with shootings data set
shootings <- shootings[shootings$city != '', ]
shootings <- shootings[shootings$state != '', ]
shootings$state2 <- factor(substring(shootings$state, 1, 2))
shootings$city <- tolower(shootings$city)
shootings <- merge(shootings,
cities,
by.x = c('state2', 'city'),
by.y = c('state', 'city'),
all.x = TRUE
)
shinyServer(function(input, output) {
# define a reactive subset of the shootings data based on dates input by user
shootings_subset <- reactive({
shootings[shootings$dateofincident >= input$date[1] & shootings$dateofincident <= input$date[2], ]
})
# define a reactive location based on user input of a city and state in the form of <city, state>
location <- reactive({
if(input$state != '') {
state <- unlist(strsplit(input$state, c(', ', ',')))[2]
city <- unlist(strsplit(input$state, c(', ', ',')))[1]
latitude <- cities[tolower(cities$state) == tolower(state) & tolower(cities$city) == tolower(city),][['latitude']]
longitude <- cities[tolower(cities$state) == tolower(state) & tolower(cities$city) == tolower(city),][['longitude']]
zoom <- 10
} else {
latitude <- 33.65711
longitude <- -85.81558
zoom <- 3
}
list(latitude, longitude, zoom)
})
# create the geo map of shootings
output$myChart2 <- renderMap({
x <- subset(shootings_subset(), longitude != 'NA' & latitude != 'NA')
lat <- location()[1]
lon <- location()[2]
z <- location()[3]
map <- Leaflet$new()
map$setView(c(lat, lon), zoom = z)
map$fullScreen(TRUE)
for (i in (1:nrow(x))) {
map$marker(
c(jitter(x$latitude[i], factor = .01), jitter(x$longitude[i], factor = .01)),
bindPopup = paste0('Victim: ',
x$victimname[i],
'<br>',
'Date: ',
x$dateofincident[i],
'<br>',
'Location: ',
capWords(x$city[i]),
', ',
substring(x$state[i], 1, 2),
'<br>',
'Officer(s): ',
x$nameofofficerorofficers[i],
'<br>',
'Source: ',
paste0('<a href="',
x$sourcelink[i],
'" target="_blank">',
x$sourcelink[i],
'</a>'
)
)
)
}
map
})
})