Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Montreal R Users Data Dive - Bike accidents
Search
Corey Chivers
April 03, 2013
0
120
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
250
From Predictions to Decisions
cjbayesian
1
540
NIPS 2017 Summary
cjbayesian
1
1.5k
Validation des prévisions écologiques utilisant VMAPP: Validation métrique appliquée à des prévisions probabilistes
cjbayesian
1
120
From Whale Calls to Dark Matter - Competetive Data Science with R and Python
cjbayesian
0
1.4k
Introduction to Likelihood-based methods
cjbayesian
1
660
Implications of uncertainty: Bayesian modelling of aquatic invasive species spread
cjbayesian
0
300
Future Avenues for Open Data
cjbayesian
0
170
Introduction to Simulation using R
cjbayesian
2
8.2k
Featured
See All Featured
Speed Design
sergeychernyshev
25
640
Building Flexible Design Systems
yeseniaperezcruz
327
38k
Become a Pro
speakerdeck
PRO
25
5k
Happy Clients
brianwarren
98
6.7k
Code Review Best Practice
trishagee
64
17k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.7k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
27
4.3k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
28
2k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
111
49k
Six Lessons from altMBA
skipperchong
27
3.5k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
1.2k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
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