SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Downloaden Sie, um offline zu lesen
Visualizing	the	frequency	of	transit	delays	using	QGIS	
and	the	Leaflet	javascript	library	in	R	
Open	Data	Day	Zurich,	Hack-a-thon	2017	
Peter	B.	Pearman	
Thomas	Roth	
Open	Data	Day	Zürich		
sponsors:	
Master Program in Biostatistics
Our	open	tools:
VBZ	Soll-Ist-Vergleich	Data	Set	
An	observaJon:		
																	A	departure	stop	(‘von’)		and	an	desJnaJon	stop	(‘nach’)		
EssenJal	variables:	
sol_an_von:					Scheduled	Jme	to	arrive	at	the	departure	stop	
ist_an_von:						Actual	Jme	of	arrival	at	the	departure	stop	
sol_ab_von:					Scheduled	Jme	to	leave	departure	stop		
ist_ab_von:						Actual	Jme	of	leaving	departure	stop	
same	four	variables	for	the	desJnaJon	stop	
line	number,	direcJon	label,	reference	Jme
QuesJon:			
	 	Where	along	lines	do	delays	most-frequently	occur?	
	 	At	stops?	Along	segments	between	stops?	
The	Issue:		
	 	Dependable	public	transportaJon	=>		
	 	 	reliability	=>	reducing	unscheduled	delays		
Goal:	Improve	on-Jme	performance:	
	 	Focus	management	efforts	on	tram	and	bus	stops		
	 	where	delays	most	frequently	occur	
ObjecJve	or	Task:		
	 	Use	Sol-Ist-Vergleich	data	
	 	Visualize	for	each	line	the	locaJons	where	delays	occur
IniJal	work:	Zürich	Open	Data	Day	Hack-a-thon	
Less	than	8	hours	to	get	preliminary	results	
	(and	abend	a	talk	or	two)	
78	bus	and	tram	lines	
72	weeks	of	delay	data	
each	with	>	106	lines	of	data	
Simplify	to	get	a	quick	result:	
Bus	33			--a	fairly	long	route	
12	weeks	of	data	
Simple	metric	of	delay:		
	--exceed	scheduled	elapsed	Jme	at	stop	
	--exceed	scheduled	elapsed	Jme	on	stretch
delays	<-	funcJon(in.Jbble,out.Jbble,work.line,min_delay_seg_min,	
	 	 	 	min_delay_von_min){	
	delay2	<-	small_Jb	%>%		
	filter(linie	==	work.line)	%>%	
													
			 	mutate(soll_seg	=	soll_an_nach	-	soll_ab_von,												#delay	during	segments	of	the	line	
									 		ist_seg	=	ist_an_nach1	-	ist_ab_von,	
									 		delay_seg	=	ist_seg	-	soll_seg,	
										
									 		soll_at_von	=	soll_ab_von	-	soll_an_von,													#	delay	at	the	stop	(Haltstelle)	
									 		ist_at_von	=	ist_ab_von	-	ist_an_von,	
									 		delay_von	=	ist_at_von	-	soll_at_von)	
			
									delay3	<-	delay2	%>% 	 	 	 	 	 						#	filter	data	lines	lacking	at	least	one	
	 	mutate(delay_seg_min	=	floor(delay_seg/60),			#	delay	greater	than	the		
	 	delay_von_min	=	floor(delay_von/60))	%>%							#necessary	minimum	
		 					 	 		
	 	filter(delay_seg_min	>=	min_delay_seg_min	|	delay_von_min	>=	min_delay_von_min)		
	return(delay3)	
}	
library(Jdyverse)	
library(lubridate)
out_Jb	<-	Jbble()	
temp=list.files('../data/fahrzeiten_data')	
work.line	<-	33	
data_set=0	
num_datasets	=	12	
min_delay_seg_min	=	0	
min_delay_von_min	=	0	
	
for	(i	in	temp){	
		data_set	<-	data_set	+	1	
		print(i)	
		delay1	<-	read.csv(paste('../data/fahrzeiten_data/',i,sep=""),stringsAsFactors	=	FALSE)	
		out_Jb	<-	delays(delay1,out_Jb,work.line,min_delay_seg_min,min_delay_von_min)	
		if	((data_set>=num_datasets)==TRUE)	break()	
}	
	
#	make	an	index	for	QGIS	plorng	
out_Jb$index	<-		
							paste(out_Jb$linie,'-',out_Jb$halt_punkt_id_von,'-',out_Jb$halt_punkt_id_nach,sep='')	
```
QGIS	
QGIS	2.18	
+	PostgreSQL	9.4	DB	(for	data	loaded	from	R)	
+	a	few	shapefiles	from	GIS	of	Kanton	Zürich
QGIS	
Buses	recorded	also	the	
way	back	to	the	garage	
(hidden)	
DisJnct	segments	for	both	
direcJons	with	offset.	
Width	proporJonal	to	
abs(delay)	
Stops	with	more	than	
0.5s	mean	delay	
labelled	
The	final	result
ObservaJons	on	Hackathon	AcJvity		
•  EssenJally	glad	to	have	a	small	result	at	the	end	of	the	
Hackathon	J	
•  Lots	of	fun!	
•  Much	of	the	effort	spent	with	the	DIVAesque	nature	of	the	data	
and	the	interface	(the	segment	key)	between	the	Calc-	and	the	
VisualisaJon	team	
•  NB:	Some	effort	went	into	having	the	correct	line	color:	who	
cares	with	only	the	line	33	displayed?	
•  Not	enough	Jme	to	verify	the	actual	visualizaJon	data
Delays	at	stops	 >	<	 Delays	along	segments	
?	
How	about	all	those	delays	of	<	1	minute?
plt	<-	ggplot(data=delays_by_type,	aes(x=delay))	+		
		
geom_histogram(data=subset(delays_by_type,Type_of_value=="stop"),	
																																							aes(fill=Type_of_value),	
																																							alpha=0.3,	binwidth=1,	boundary=0)	+	
	
geom_histogram(data=subset(delays_by_type,Type_of_value=="seg"),	
																																							aes(fill=Type_of_value),	
																																							alpha=0.3,	binwidth=1,	boundary=0)	+	
scale_fill_manual(name="Counts",	values	=	c("blue","red"),	
																																							labels	=	c("Segments","Stops"))	+	
facet_wrap(~day.of.week,	nrow	=	3)	+	
ggJtle("	Delays	on	Route	33,	By	Day	of	Week")	+	
theme(plot.Jtle	=	element_text(hjust	=	0.5))	
out_Jb$day.of.week	<-	factor(weekdays(as.POSIXct(out_Jb$soll_ab_von,	
	 	 	 	 	 	 	origin=dmy(out_Jb$datum_von))),	
	 	 	 	 	 	levels=c("Monday","Tuesday","Wednesday",	
	 	 	 	 	 	 	 	"Thursday”,"Friday","Saturday","Sunday"))
Is	exceeding	Jme	at	a	stop	really	a	delay?	
Table	for	each	line	and	stop:	
Tally	number	of	delays	longer	than	a	threshold		
Thresholds:	1,2,3,4,5,6	minutes	
Separate	the	tallies	by	direcJon	
scheduled		
arrival	
Jme	
scheduled	
departure	
Don’t	count	early	arrival	toward	delay
Note:	Includes	early	arrivals
Note:	Includes	early	arrivals
R	interface	for	the	Leaflet	javascript	library:	
interacJve	maps	
Leaflet	for	R	
hbps://rstudio.github.io/leaflet/
Generate	html	map	widgets	with		
Leaflet	javascript	library	for	R		
for	(i	in	lines){	
				df	<-				#	read	a	line’s	.csv	file						%>%	
						#	filter	out	Garages	and	Depots			%>%	
														#	mutate	to	create	a	variable	that	has	label	informaJon	
	
				pal	<-	colorBin(palebe	=	"Reds",	domain=df$del_1_1,	6,	preby	=	FALSE)	
				m	<-	leaflet(df)	%>%	
												addTiles2()	%>%	
												setView(lng=8.5402,lat=47.3778,zoom=12)	%>%	
												addCircles(~lon,~lat,	label	=	~content,	radius	=	150,	stroke=TRUE,	color="Black",	
																																		weight=1,	fillColor	=	pal(df$del_1_1),	fillOpacity	=	0.8)	%>%	
												addLabelOnlyMarkers(~lon,~lat,label	=	~content)	
					
				m	<-	m	%>%	
												addLegend("bobomright",	pal=pal,	values=	~del_1_1,		
					Jtle	=	'Delays	>	1	min',	opacity	=0.8)	
	
			saveWidget(widget	=	m,	file=	paste("./line_",i,".html",sep=''),selfcontained	=	TRUE)	
}
Let’s	look	at	an	R	Leaflet	widget
call	the	widget	in	an	RStudio	html_notebook….	
```{r	echo	=	FALSE}	
m_2	 	 	 		#	example	name	of	a	widget	object					
```	
Render	the	notebook	from	RStudio	into	html	
See	it	all	here:	
			github.com/OpenDataDayZurich2016/visualizaJon_delays
Thank	You	
github.com/OpenDataDayZurich2016/visualizaJon_delays

Weitere ähnliche Inhalte

Ähnlich wie Visualizing the frequency of transit delays using QGIS and the Leaflet javascript library in R

16331 랩발제
16331 랩발제 16331 랩발제
16331 랩발제 Hyesoo Yoo
 
maXbox Starter 40 REST API Coding
maXbox Starter 40 REST API CodingmaXbox Starter 40 REST API Coding
maXbox Starter 40 REST API CodingMax Kleiner
 
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...ijsrd.com
 
Traveline2011 raper
Traveline2011 raperTraveline2011 raper
Traveline2011 raperTraveline
 
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...Stefan Bischof
 
Flowex - Railway Flow-Based Programming with Elixir GenStage.
Flowex - Railway Flow-Based Programming with Elixir GenStage.Flowex - Railway Flow-Based Programming with Elixir GenStage.
Flowex - Railway Flow-Based Programming with Elixir GenStage.Anton Mishchuk
 
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton MishchukFlowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton MishchukElixir Club
 
A Traffic Chaos Reduction Approach for Emergency Scenarios
A Traffic Chaos Reduction Approach for Emergency ScenariosA Traffic Chaos Reduction Approach for Emergency Scenarios
A Traffic Chaos Reduction Approach for Emergency ScenariosMichele Weigle
 
innoveren_met_big_data_jr_helmus
innoveren_met_big_data_jr_helmusinnoveren_met_big_data_jr_helmus
innoveren_met_big_data_jr_helmusJurjen Helmus
 
Sample Serve 4 1 10
Sample Serve   4 1 10Sample Serve   4 1 10
Sample Serve 4 1 10Brian Olin
 
Spark Summit EU talk by Javier Aguedes
Spark Summit EU talk by Javier AguedesSpark Summit EU talk by Javier Aguedes
Spark Summit EU talk by Javier AguedesSpark Summit
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choiceMarcus Young
 
This article was downloaded by [107.133.16.252] On 28 Octobe
This article was downloaded by [107.133.16.252] On 28 OctobeThis article was downloaded by [107.133.16.252] On 28 Octobe
This article was downloaded by [107.133.16.252] On 28 OctobeGrazynaBroyles24
 
Transport mapping: The OSM Route
Transport mapping: The OSM RouteTransport mapping: The OSM Route
Transport mapping: The OSM RouteHarry Wood
 
Open data : from a public transport operator to a mobility platform
 Open data : from a public transport operator to a mobility platform Open data : from a public transport operator to a mobility platform
Open data : from a public transport operator to a mobility platformStroh Antoine
 
Travel demand matrix estimation methods integrating the full richness of obse...
Travel demand matrix estimation methods integrating the full richness of obse...Travel demand matrix estimation methods integrating the full richness of obse...
Travel demand matrix estimation methods integrating the full richness of obse...Luuk Brederode
 
Supply chain logistics : vehicle routing and scheduling
Supply chain logistics : vehicle  routing and  schedulingSupply chain logistics : vehicle  routing and  scheduling
Supply chain logistics : vehicle routing and schedulingRetigence Technologies
 

Ähnlich wie Visualizing the frequency of transit delays using QGIS and the Leaflet javascript library in R (20)

16331 랩발제
16331 랩발제 16331 랩발제
16331 랩발제
 
maXbox Starter 40 REST API Coding
maXbox Starter 40 REST API CodingmaXbox Starter 40 REST API Coding
maXbox Starter 40 REST API Coding
 
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...
Optimization Approach for Capacitated Vehicle Routing Problem Using Genetic A...
 
Traveline 2011 raper
Traveline 2011 raperTraveline 2011 raper
Traveline 2011 raper
 
Traveline2011 raper
Traveline2011 raperTraveline2011 raper
Traveline2011 raper
 
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...
ISWC 2015 - Collecting, integrating, enriching and republishing open city dat...
 
Flowex - Railway Flow-Based Programming with Elixir GenStage.
Flowex - Railway Flow-Based Programming with Elixir GenStage.Flowex - Railway Flow-Based Programming with Elixir GenStage.
Flowex - Railway Flow-Based Programming with Elixir GenStage.
 
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton MishchukFlowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
Flowex: Flow-Based Programming with Elixir GenStage - Anton Mishchuk
 
A Traffic Chaos Reduction Approach for Emergency Scenarios
A Traffic Chaos Reduction Approach for Emergency ScenariosA Traffic Chaos Reduction Approach for Emergency Scenarios
A Traffic Chaos Reduction Approach for Emergency Scenarios
 
innoveren_met_big_data_jr_helmus
innoveren_met_big_data_jr_helmusinnoveren_met_big_data_jr_helmus
innoveren_met_big_data_jr_helmus
 
Real time traffic management - challenges and solutions
Real time traffic management - challenges and solutionsReal time traffic management - challenges and solutions
Real time traffic management - challenges and solutions
 
Sample Serve 4 1 10
Sample Serve   4 1 10Sample Serve   4 1 10
Sample Serve 4 1 10
 
Spark Summit EU talk by Javier Aguedes
Spark Summit EU talk by Javier AguedesSpark Summit EU talk by Javier Aguedes
Spark Summit EU talk by Javier Aguedes
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choice
 
This article was downloaded by [107.133.16.252] On 28 Octobe
This article was downloaded by [107.133.16.252] On 28 OctobeThis article was downloaded by [107.133.16.252] On 28 Octobe
This article was downloaded by [107.133.16.252] On 28 Octobe
 
Iwsm2014 defect density measurements using cosmic (thomas fehlmann)
Iwsm2014   defect density measurements using cosmic (thomas fehlmann)Iwsm2014   defect density measurements using cosmic (thomas fehlmann)
Iwsm2014 defect density measurements using cosmic (thomas fehlmann)
 
Transport mapping: The OSM Route
Transport mapping: The OSM RouteTransport mapping: The OSM Route
Transport mapping: The OSM Route
 
Open data : from a public transport operator to a mobility platform
 Open data : from a public transport operator to a mobility platform Open data : from a public transport operator to a mobility platform
Open data : from a public transport operator to a mobility platform
 
Travel demand matrix estimation methods integrating the full richness of obse...
Travel demand matrix estimation methods integrating the full richness of obse...Travel demand matrix estimation methods integrating the full richness of obse...
Travel demand matrix estimation methods integrating the full richness of obse...
 
Supply chain logistics : vehicle routing and scheduling
Supply chain logistics : vehicle  routing and  schedulingSupply chain logistics : vehicle  routing and  scheduling
Supply chain logistics : vehicle routing and scheduling
 

Mehr von Zurich_R_User_Group

Anomaly detection - database integrated
Anomaly detection - database integratedAnomaly detection - database integrated
Anomaly detection - database integratedZurich_R_User_Group
 
R at Sanitas - Workflow, Problems and Solutions
R at Sanitas - Workflow, Problems and SolutionsR at Sanitas - Workflow, Problems and Solutions
R at Sanitas - Workflow, Problems and SolutionsZurich_R_User_Group
 
Introduction to Renjin, the alternative engine for R
Introduction to Renjin, the alternative engine for R Introduction to Renjin, the alternative engine for R
Introduction to Renjin, the alternative engine for R Zurich_R_User_Group
 
How to use R in different professions: R for Car Insurance Product (Speaker: ...
How to use R in different professions: R for Car Insurance Product (Speaker: ...How to use R in different professions: R for Car Insurance Product (Speaker: ...
How to use R in different professions: R for Car Insurance Product (Speaker: ...Zurich_R_User_Group
 
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...Zurich_R_User_Group
 
Where South America is Swinging to the Right: An R-Driven Data Journalism Pr...
Where South America is Swinging to the Right:  An R-Driven Data Journalism Pr...Where South America is Swinging to the Right:  An R-Driven Data Journalism Pr...
Where South America is Swinging to the Right: An R-Driven Data Journalism Pr...Zurich_R_User_Group
 
Visualization Challenge: Mapping Health During Travel
Visualization Challenge: Mapping Health During TravelVisualization Challenge: Mapping Health During Travel
Visualization Challenge: Mapping Health During TravelZurich_R_User_Group
 
Zurich R User group: Desc tools
Zurich R User group: Desc tools Zurich R User group: Desc tools
Zurich R User group: Desc tools Zurich_R_User_Group
 
January 2016 Meetup: Speeding up (big) data manipulation with data.table package
January 2016 Meetup: Speeding up (big) data manipulation with data.table packageJanuary 2016 Meetup: Speeding up (big) data manipulation with data.table package
January 2016 Meetup: Speeding up (big) data manipulation with data.table packageZurich_R_User_Group
 
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig Wang
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig WangDecember 2015 Meetup - Shiny: Make Your R Code Interactive - Craig Wang
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig WangZurich_R_User_Group
 

Mehr von Zurich_R_User_Group (11)

Anomaly detection - database integrated
Anomaly detection - database integratedAnomaly detection - database integrated
Anomaly detection - database integrated
 
R at Sanitas - Workflow, Problems and Solutions
R at Sanitas - Workflow, Problems and SolutionsR at Sanitas - Workflow, Problems and Solutions
R at Sanitas - Workflow, Problems and Solutions
 
Modeling Bus Bunching
Modeling Bus BunchingModeling Bus Bunching
Modeling Bus Bunching
 
Introduction to Renjin, the alternative engine for R
Introduction to Renjin, the alternative engine for R Introduction to Renjin, the alternative engine for R
Introduction to Renjin, the alternative engine for R
 
How to use R in different professions: R for Car Insurance Product (Speaker: ...
How to use R in different professions: R for Car Insurance Product (Speaker: ...How to use R in different professions: R for Car Insurance Product (Speaker: ...
How to use R in different professions: R for Car Insurance Product (Speaker: ...
 
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...
How to use R in different professions: R In Finance (Speaker: Gabriel Foix, M...
 
Where South America is Swinging to the Right: An R-Driven Data Journalism Pr...
Where South America is Swinging to the Right:  An R-Driven Data Journalism Pr...Where South America is Swinging to the Right:  An R-Driven Data Journalism Pr...
Where South America is Swinging to the Right: An R-Driven Data Journalism Pr...
 
Visualization Challenge: Mapping Health During Travel
Visualization Challenge: Mapping Health During TravelVisualization Challenge: Mapping Health During Travel
Visualization Challenge: Mapping Health During Travel
 
Zurich R User group: Desc tools
Zurich R User group: Desc tools Zurich R User group: Desc tools
Zurich R User group: Desc tools
 
January 2016 Meetup: Speeding up (big) data manipulation with data.table package
January 2016 Meetup: Speeding up (big) data manipulation with data.table packageJanuary 2016 Meetup: Speeding up (big) data manipulation with data.table package
January 2016 Meetup: Speeding up (big) data manipulation with data.table package
 
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig Wang
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig WangDecember 2015 Meetup - Shiny: Make Your R Code Interactive - Craig Wang
December 2015 Meetup - Shiny: Make Your R Code Interactive - Craig Wang
 

Kürzlich hochgeladen

Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanMYRABACSAFRA2
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPTBoston Institute of Analytics
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...Amil Baba Dawood bangali
 
Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfchwongval
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...ssuserf63bd7
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxMike Bennett
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectBoston Institute of Analytics
 
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSINGmarianagonzalez07
 

Kürzlich hochgeladen (20)

Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population Mean
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
 
Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdf
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptx
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis Project
 
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
2006_GasProcessing_HB (1).pdf HYDROCARBON PROCESSING
 

Visualizing the frequency of transit delays using QGIS and the Leaflet javascript library in R