Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Montreal R Users Data Dive - Bike accidents
Corey Chivers
April 03, 2013
0
93
Montreal R Users Data Dive - Bike accidents
Corey Chivers
April 03, 2013
Tweet
Share
More Decks by Corey Chivers
See All by Corey Chivers
Germination Project Data Science at Penn Medicine
cjbayesian
1
130
From Predictions to Decisions
cjbayesian
1
420
NIPS 2017 Summary
cjbayesian
1
1.4k
Validation des prévisions écologiques utilisant VMAPP: Validation métrique appliquée à des prévisions probabilistes
cjbayesian
1
91
From Whale Calls to Dark Matter - Competetive Data Science with R and Python
cjbayesian
0
1.3k
Introduction to Likelihood-based methods
cjbayesian
1
460
Implications of uncertainty: Bayesian modelling of aquatic invasive species spread
cjbayesian
0
230
Future Avenues for Open Data
cjbayesian
0
140
Introduction to Simulation using R
cjbayesian
2
7.9k
Featured
See All Featured
GitHub's CSS Performance
jonrohan
1020
420k
Principles of Awesome APIs and How to Build Them.
keavy
113
15k
GraphQLの誤解/rethinking-graphql
sonatard
31
6.8k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
21
1.4k
Code Reviewing Like a Champion
maltzj
506
37k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
15
980
Visualization
eitanlees
125
12k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
119
28k
What's new in Ruby 2.0
geeforr
336
30k
Raft: Consensus for Rubyists
vanstee
127
5.5k
Intergalactic Javascript Robots from Outer Space
tanoku
260
25k
Thoughts on Productivity
jonyablonski
44
2.4k
Transcript
Welcome to the Data Dive! Sponsored By:
Cycling Collisions • All accidents in Montreal reported 2006-2010 •
Obtained and compiled by Roberta Rocha at the Gazette https://github.com/cjbayesian/collisions
• Can we predict accident rates? • Spatial patterns? Dangerous
areas? • Does the construction holiday have an effect on accident rates? Some potential questions
Getting Started library(lubridate) library(maptools) library(Hmisc) d<-read.csv('data/Bike Accidents.csv',sep='|') mtl<-readShapePoly('data/montreal_borough_borders.shp') par(bg='black') plot(mtl,col='grey')
points(d$long,d$lat,col='red',pch=20,cex=0.5) https://github.com/cjbayesian/collisions http://youtu.be/hJE2_XMdfTk
• Can we predict accident rates? • Spatial patterns? Dangerous
areas? • Does the construction holiday have an effect on accident rates? Some potential questions