Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Montreal R Users Data Dive - Bike accidents
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Corey Chivers
April 03, 2013
0
130
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
330
From Predictions to Decisions
cjbayesian
1
610
NIPS 2017 Summary
cjbayesian
1
1.6k
Validation des prévisions écologiques utilisant VMAPP: Validation métrique appliquée à des prévisions probabilistes
cjbayesian
1
160
From Whale Calls to Dark Matter - Competetive Data Science with R and Python
cjbayesian
0
1.4k
Introduction to Likelihood-based methods
cjbayesian
1
850
Implications of uncertainty: Bayesian modelling of aquatic invasive species spread
cjbayesian
0
380
Future Avenues for Open Data
cjbayesian
0
250
Introduction to Simulation using R
cjbayesian
2
8.3k
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
304
21k
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
200
Game over? The fight for quality and originality in the time of robots
wayneb77
1
130
Leading Effective Engineering Teams in the AI Era
addyosmani
9
1.7k
Claude Code のすすめ
schroneko
67
220k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
850
Building a Scalable Design System with Sketch
lauravandoore
463
34k
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
220
4 Signs Your Business is Dying
shpigford
187
22k
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
130
Producing Creativity
orderedlist
PRO
348
40k
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