SlideShare ist ein Scribd-Unternehmen logo
1 von 40
Downloaden Sie, um offline zu lesen
Hands-on	Training:	Tackling	Data	
Science	Challenges	with	PDI	
Caio	Moreno	de	Souza
Pentaho	Senior	Consultant,	EMEA	&	APAC	Services	Team,	Hitachi	Vantara
James	O’Reilly
Pentaho	Training	&	Development	Specialist,	Hitachi	Vantara
Topics:	Tackling	Data	Science	Challenges	with	PDI
• Overview	of	Machine	Learning
• 4	Steps	of	Machine	Learning	with	Pentaho
• Demonstration
– Credit	Card	Fraud
• Summary
• Q&A
Machine	Learning
Tackling	Data	Science	Challenges	with	PDI
Overview
• Machine	Learning	(ML)	uses	algorithms	to	find	patterns	in	data,	and	then	uses	a	
model	that	recognizes	those	patterns	to	make	predictions	on	new	data.
Tackling	Data	Science	Challenges	with	PDI
Overview
• Supervised	learning	
algorithms	use	
labelled	data
• Unsupervised	
learning	algorithms	
find	patterns	in	
unlabelled	data.
Tackling	Data	Science	Challenges	with	PDI
Supervised	Learning	– Predictive	Analysis
• Supervised	algorithms	use	labelled	data	in	which	both	the	input	and	target	
outcome,	or	label,	are	provided	to	the	algorithm.
Tackling	Data	Science	Challenges	with	PDI
Examples
Machine	Learning
with	Pentaho
Tackling	Data	Science	Challenges	with	PDI
CRISP-DM
• CRoss Industry	Standard	
Process	for	Data	Mining
• The	sequence	of	the	phases	is	
not	strict	and	moving	back	and	
forth	between	different	phases	
is	always	required.
Business	
Understanding
Data
Understanding
Data
Preparation
Modeling
Evaluation
Deployment
Data
Tackling	Data	Science	Challenges	with	PDI
Examples
• Business	Understanding
– This	initial	phase	focuses	on	understanding	the	project	objectives	and	requirements	
from	a	business	perspective,	and	then	converting	this	knowledge	into	a	data	mining	
problem	definition,	and	a	preliminary	plan	designed	to	achieve	the	objectives.
• Data	Preparation
– The	data	preparation	phase	covers	all	activities	to	construct	the	final	dataset	(data	
that	will	be	fed	into	the	modelling	tool(s))	from	the	initial	raw	data.
• Modelling
– In	this	phase,	various	modelling	techniques	are	selected	and	applied,	and	their	
parameters	are	calibrated	to	optimal	values.	
• Evaluation
• Deployment
Tackling	Data	Science	Challenges	with	PDI
Examples
• Evaluation
– At	this	stage	in	the	project	you	have	built	a	model	(or	models)	that	appears	to	have	
high	quality,	from	a	data	analysis	perspective.	Before	proceeding	to	final	deployment	
of	the	model,	it	is	important	to	more	thoroughly	evaluate	the	model,	and	review	the	
steps	executed	to	construct	the	model,	to	be	certain	it	properly	achieves	the	business	
objectives.
• Deployment
– Creation	of	the	model	is	generally	not	the	end	of	the	project.	Even	if	the	purpose	of	
the	model	is	to	increase	knowledge	of	the	data,	the	knowledge	gained	will	need	to	
be	organized	and	presented	in	a	way	that	is	useful	to	the	customer.
Machine	Learning
Demonstration
Tackling	Data	Science	Challenges	with	PDI
Data	Modelling	Software
• Python is	an	interpreted,	object-oriented,	high-level	programming	language	
with	dynamic	semantics.
• RStudio is	an	integrated	development	environment	(IDE)	for	R.	It	includes	a	
console,	syntax-highlighting	editor	that	supports	direct	code	execution,	as	well	
as	tools	for	plotting,	history,	debugging	and	workspace	management.	
• Anaconda is	a	freemium	open	source	distribution	of	the	Python	and	R	
programming	languages	for	large-scale	data	processing,	predictive	analytics,	and	
scientific	computing,	that	aims	to	simplify	package	management	and	
deployment
Tackling	Data	Science	Challenges	with	PDI
Lab:	1-1	Python	using	Spyder
Tackling	Data	Science	Challenges	with	PDI
Lab	1-2:	R	Studio
Tackling	Data	Science	Challenges	with	PDI
Workshop	1-1:	Shell	script
• Execute	using	Shell	Script	Job	Entry
Machine	Learning
Demonstration
Tackling	Data	Science	Challenges	with	PDI
Demonstration:	Detect	credit	card	fraud
• A	direct	retailer	wants	to	reduce	losses	due	to	orders	involving	fraudulent	use	of	
credit	cards.	Orders	are	accepted	via	phone	and	their	web	site	and	goods	ship	
directly	to	the	customer.	
• A	relational	database	stores	basic	customer	details	such	as:
– customer	name
– date	of	birth
– billing	address
– preferred	shipping	address.	
• As	orders	come	in,	they	are	stored	in	a	database.	
• A	report	of	historical	instances	of	fraud	is	contained	in	a	CSV	spreadsheet.
Machine	Learning	with	Pentaho
4	steps	to	Machine	Learning
Data	Preparation
Feature	Engineering
Tackling	Data	Science	Challenges	with	PDI
Data	Preparation
• With	the	goal	of	preparing	a	dataset	for	ML,	we	can	use	PDI	to	combine	these	
disparate	data	sources	and	engineer	some	features	for	learning	from	it.	
• To	begin	with	customer	data	is	joined	from	several	relational	database	tables,	
and	then	blended	with	transactional	data	from	a	database	and	historical	fraud	
occurrences	contained	in	a	CSV	file.
• Following	this,	there	are	steps	for	deriving	additional	fields	that	might	be	useful	
for	predictive	modelling.	These	include:
– computing	the	customer's	age,	
– extracting	the	hour	of	the	day	the	order	was	placed,	
– and	setting	a	flag	to	indicate	whether	the	shipping	and	billing	addresses	have	the	same	
zip	code.
Tackling	Data	Science	Challenges	with	PDI
Data	Preparation
Tackling	Data	Science	Challenges	with	PDI
Data	Preparation
• This	process	culminates	with	output	of	flattened	(a	Data	Scientist’s	
preferred	data	shape)	data	in	both	CSV	and	ARFF	(Attribute	Relational	
File	Format)	data,	the	latter	being	the	native	file	format	used	by	PDM	
(Pentaho	Data	Mining,	AKA	WEKA).	
• We	end	up	with	100,000	examples	(rows).
• From	this	list,	for	the	purposes	of	predictive	modelling,	we	can	drop	the	
customer	name,	ID	fields,	email	addresses,	phone	numbers	and	physical	
addresses.	These	fields	are	unlikely	to	be	useful	for	learning	purposes	
and,	in	fact,	can	be	detrimental	due	to	the	large	number	of	distinct	
values	they	contain.
Train,	Tune,	Test	
Machine	Learning	
Models
Machine	Learning	with	Pentaho
Train,	Tune,	Test	Machine	Learning	Model
• So,	what	does	the	data	scientist	do	at	this	point?	
• Typically,	they	will	want	to	get	a	feel	for	the	data	by	examining	simple	summary	
statistics	and	visualizations,	followed	by	applying	quick	techniques	for	
assessing	the	relationship	between	individual	attributes	(fields)	and	the	target	
of	interest	which,	in	this	example,	is	the	"reported_as_fraud_historic"	field.
Tackling	Data	Science	Challenges	with	PDI
Train,	Tune,	Test	Machine	Learning	Model:	ktr_ml_r_train_model_fraud_v1.ktr
• To	build	a	model	directly	in	R	(rather	than	via	WEKA's	wrapper	classifiers),	we	
can	simply	add	a	R	Script	Executor	step	to	the	transformation.	
• PDI	materializes	incoming	batches	of	rows	as	a	data	frame	in	the	R	environment.	
• The	following	figure	shows	using	this	step	to	execute	code	that	builds	and	saves	
a	Random	Forest	regression	model.
Tackling	Data	Science	Challenges	with	PDI
Train,	Tune,	Test	Machine	Learning	Model:	ktr_ml_r_train_model_fraud_v1.ktr
Tackling	Data	Science	Challenges	with	PDI
Train,	Tune,	Test	Machine	Learning	Model:	ktr_ml_r_train_model_fraud_v1.ktr
Tackling	Data	Science	Challenges	with	PDI
Train	Machine	Learning	Model:	ktr_ml_r_train_model_fraud_v1.ktr
• You’re	now	going	to	train	the	Random	Forest	model..!
• Open	the	transformation:	ktr_ml_r_train_model_fraud_v1.ktr
• Copy	/	Paste	the	train_model.txt	script	from	the	..scripts	folder..
Deploy	Predictive	
Models
Tackling	Data	Science	Challenges	with	PDI
Predict	/	Deploy	Machine	Learning	Model:	ktr_ml_r_predict_fraud_v1.ktr
• You’re	now	going	to	predict	/	deploy	the	Random	Forest	model..!
• Open	the	transformation:	ktr_ml_r_predict_fraud_v1.ktr
• Copy	/	Paste	the	predict_model.txt	script	from	the	..scripts	folder..
Tackling	Data	Science	Challenges	with	PDI
Deploy	/	Predict	Model:ktr_ml_r_predict_fraud_v1.ktr
Tackling	Data	Science	Challenges	with	PDI
Deploy	/	Predict	Model:ktr_ml_r_predict_fraud_v1.ktr
Tackling	Data	Science	Challenges	with	PDI
Results
Summary
What	we	covered	today:
• Overview	of	Machine	Learning
• 4	Steps	of	Machine	Learning	with	Pentaho
• Demonstration
– Credit	Card	Fraud
Next	Steps
Want	to	learn	more?
• Talk	to	us	during	Pentaho	World	2017	or	send	us	an	e-mail	
caio.moreno@HitachiVantara.com /	james.oreilly@hitachivantara.com
• Meet-the-Experts:	
– https://www.pentahoworld.com/meet-the-experts
Any	Questions?
Appendix	A
Random	Forest
• Random	forests or	random	decision	forests	are	an	ensemble	learning	method	
for	classification,	regression	and	other	tasks,	that	operate	by	constructing	a	
multitude	of	decision	trees	at	training	time	and	outputting	the	class	that	is	the	
mode	of	the	classes	(classification)	or	mean	prediction	(regression)	of	the	
individual	trees.	
• Random	decision	forests	correct	for	decision	trees'	habit	of	overfitting	to	their	
training	set.
Appendix	A
Unsupervised
• Unsupervised	learning,	also	sometimes	called	descriptive	analytics,	does	not	
have	labelled	data	provided	in	advance.	These	algorithms	discover	similarities,	
or	regularities	in	the	input	data.	An	example	of	unsupervised	learning	is	
grouping	similar	customers,	based	on	purchase	data.

Weitere ähnliche Inhalte

Ähnlich wie Pentaho World 2018: Hands-on Training: Tackling Data Science Challenges with PDI (Friday, October 27th, 2017)

Data Analytics Course In Surat.pdf
Data Analytics Course In Surat.pdfData Analytics Course In Surat.pdf
Data Analytics Course In Surat.pdfSujata Gupta
 
Drifting Away: Testing ML Models in Production
Drifting Away: Testing ML Models in ProductionDrifting Away: Testing ML Models in Production
Drifting Away: Testing ML Models in ProductionDatabricks
 
Data science training in hyd ppt converted (1)
Data science training in hyd ppt converted (1)Data science training in hyd ppt converted (1)
Data science training in hyd ppt converted (1)SayyedYusufali
 
Data science training in hyd pdf converted (1)
Data science training in hyd pdf converted (1)Data science training in hyd pdf converted (1)
Data science training in hyd pdf converted (1)SayyedYusufali
 
Data science training in hydpdf converted (1)
Data science training in hydpdf  converted (1)Data science training in hydpdf  converted (1)
Data science training in hydpdf converted (1)SayyedYusufali
 
Which institute is best for data science?
Which institute is best for data science?Which institute is best for data science?
Which institute is best for data science?DIGITALSAI1
 
Best Selenium certification course
Best Selenium certification courseBest Selenium certification course
Best Selenium certification courseKumarNaik21
 
Data science training in hyd ppt (1)
Data science training in hyd ppt (1)Data science training in hyd ppt (1)
Data science training in hyd ppt (1)SayyedYusufali
 
Data science training institute in hyderabad
Data science training institute in hyderabadData science training institute in hyderabad
Data science training institute in hyderabadVamsiNihal
 
Data science training in Hyderabad
Data science  training in HyderabadData science  training in Hyderabad
Data science training in Hyderabadsaitejavella
 
Data science training Hyderabad
Data science training HyderabadData science training Hyderabad
Data science training HyderabadNithinsunil1
 
Data science online training in hyderabad
Data science online training in hyderabadData science online training in hyderabad
Data science online training in hyderabadVamsiNihal
 
Data science training in hyd ppt (1)
Data science training in hyd ppt (1)Data science training in hyd ppt (1)
Data science training in hyd ppt (1)SayyedYusufali
 
data science training and placement
data science training and placementdata science training and placement
data science training and placementSaiprasadVella
 
online data science training
online data science trainingonline data science training
online data science trainingDIGITALSAI1
 
Data science online training in hyderabad
Data science online training in hyderabadData science online training in hyderabad
Data science online training in hyderabadVamsiNihal
 
data science online training in hyderabad
data science online training in hyderabaddata science online training in hyderabad
data science online training in hyderabadVamsiNihal
 
Best data science training in Hyderabad
Best data science training in HyderabadBest data science training in Hyderabad
Best data science training in HyderabadKumarNaik21
 
Data science training Hyderabad
Data science training HyderabadData science training Hyderabad
Data science training HyderabadNithinsunil1
 

Ähnlich wie Pentaho World 2018: Hands-on Training: Tackling Data Science Challenges with PDI (Friday, October 27th, 2017) (20)

Deep learning
Deep learningDeep learning
Deep learning
 
Data Analytics Course In Surat.pdf
Data Analytics Course In Surat.pdfData Analytics Course In Surat.pdf
Data Analytics Course In Surat.pdf
 
Drifting Away: Testing ML Models in Production
Drifting Away: Testing ML Models in ProductionDrifting Away: Testing ML Models in Production
Drifting Away: Testing ML Models in Production
 
Data science training in hyd ppt converted (1)
Data science training in hyd ppt converted (1)Data science training in hyd ppt converted (1)
Data science training in hyd ppt converted (1)
 
Data science training in hyd pdf converted (1)
Data science training in hyd pdf converted (1)Data science training in hyd pdf converted (1)
Data science training in hyd pdf converted (1)
 
Data science training in hydpdf converted (1)
Data science training in hydpdf  converted (1)Data science training in hydpdf  converted (1)
Data science training in hydpdf converted (1)
 
Which institute is best for data science?
Which institute is best for data science?Which institute is best for data science?
Which institute is best for data science?
 
Best Selenium certification course
Best Selenium certification courseBest Selenium certification course
Best Selenium certification course
 
Data science training in hyd ppt (1)
Data science training in hyd ppt (1)Data science training in hyd ppt (1)
Data science training in hyd ppt (1)
 
Data science training institute in hyderabad
Data science training institute in hyderabadData science training institute in hyderabad
Data science training institute in hyderabad
 
Data science training in Hyderabad
Data science  training in HyderabadData science  training in Hyderabad
Data science training in Hyderabad
 
Data science training Hyderabad
Data science training HyderabadData science training Hyderabad
Data science training Hyderabad
 
Data science online training in hyderabad
Data science online training in hyderabadData science online training in hyderabad
Data science online training in hyderabad
 
Data science training in hyd ppt (1)
Data science training in hyd ppt (1)Data science training in hyd ppt (1)
Data science training in hyd ppt (1)
 
data science training and placement
data science training and placementdata science training and placement
data science training and placement
 
online data science training
online data science trainingonline data science training
online data science training
 
Data science online training in hyderabad
Data science online training in hyderabadData science online training in hyderabad
Data science online training in hyderabad
 
data science online training in hyderabad
data science online training in hyderabaddata science online training in hyderabad
data science online training in hyderabad
 
Best data science training in Hyderabad
Best data science training in HyderabadBest data science training in Hyderabad
Best data science training in Hyderabad
 
Data science training Hyderabad
Data science training HyderabadData science training Hyderabad
Data science training Hyderabad
 

Mehr von Caio Moreno

Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...
Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...
Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...Caio Moreno
 
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...Caio Moreno
 
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...#PCM15: - How to monitor the use and performance of BI Server using the Plug-...
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...Caio Moreno
 
Encontro da Comunidade Pentaho. Aprenda mais sobre a mais poderosa e conheci...
Encontro da Comunidade Pentaho.  Aprenda mais sobre a mais poderosa e conheci...Encontro da Comunidade Pentaho.  Aprenda mais sobre a mais poderosa e conheci...
Encontro da Comunidade Pentaho. Aprenda mais sobre a mais poderosa e conheci...Caio Moreno
 
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...Caio Moreno
 
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012Caio Moreno
 
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...Relatório descritivo do curso de Educação a Distância: Construindo um Pro...
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...Caio Moreno
 
Palestra sobre BI Open Source @ USP (Out/2011)
Palestra sobre BI Open Source @ USP (Out/2011)Palestra sobre BI Open Source @ USP (Out/2011)
Palestra sobre BI Open Source @ USP (Out/2011)Caio Moreno
 
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto Alegre
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto AlegreInteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto Alegre
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto AlegreCaio Moreno
 
Curso de Pós-graduação em Business Intelligence
Curso de Pós-graduação em Business IntelligenceCurso de Pós-graduação em Business Intelligence
Curso de Pós-graduação em Business IntelligenceCaio Moreno
 
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...Caio Moreno
 
Alianza IT4biz (Brasil) y StrateBI (España)
Alianza IT4biz (Brasil) y StrateBI (España)Alianza IT4biz (Brasil) y StrateBI (España)
Alianza IT4biz (Brasil) y StrateBI (España)Caio Moreno
 
Aliança IT4biz (Brasil) e StrateBI (Espanha)
Aliança IT4biz (Brasil) e StrateBI (Espanha)Aliança IT4biz (Brasil) e StrateBI (Espanha)
Aliança IT4biz (Brasil) e StrateBI (Espanha)Caio Moreno
 
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...Caio Moreno
 
IT4biz - Caso de Sucesso Pentaho - Dia % Brasil
IT4biz - Caso de Sucesso Pentaho - Dia % BrasilIT4biz - Caso de Sucesso Pentaho - Dia % Brasil
IT4biz - Caso de Sucesso Pentaho - Dia % BrasilCaio Moreno
 
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...Caio Moreno
 
Apresentação Reembolso Fácil
Apresentação Reembolso FácilApresentação Reembolso Fácil
Apresentação Reembolso FácilCaio Moreno
 
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011Caio Moreno
 
Pentaho na campus party 2011
Pentaho na campus party 2011Pentaho na campus party 2011
Pentaho na campus party 2011Caio Moreno
 
Pentaho: inteligência de negócios utilizando software livre
Pentaho: inteligência de negócios utilizando software livrePentaho: inteligência de negócios utilizando software livre
Pentaho: inteligência de negócios utilizando software livreCaio Moreno
 

Mehr von Caio Moreno (20)

Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...
Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...
Pentaho World 2018: Network Rail: Predicting the Result of Incidents with Big...
 
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...
Pentaho World 2017: Automated Machine Learning (AutoML) and Pentaho (Thursday...
 
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...#PCM15: - How to monitor the use and performance of BI Server using the Plug-...
#PCM15: - How to monitor the use and performance of BI Server using the Plug-...
 
Encontro da Comunidade Pentaho. Aprenda mais sobre a mais poderosa e conheci...
Encontro da Comunidade Pentaho.  Aprenda mais sobre a mais poderosa e conheci...Encontro da Comunidade Pentaho.  Aprenda mais sobre a mais poderosa e conheci...
Encontro da Comunidade Pentaho. Aprenda mais sobre a mais poderosa e conheci...
 
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...
Curso Gratuito Online Desmistificando BI (Business Intelligence) Open Source ...
 
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012
Palestra na FEA USP - Pentaho: Fazendo mais com menos - Evento ComTycho Day 2012
 
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...Relatório descritivo do curso de Educação a Distância: Construindo um Pro...
Relatório descritivo do curso de Educação a Distância: Construindo um Pro...
 
Palestra sobre BI Open Source @ USP (Out/2011)
Palestra sobre BI Open Source @ USP (Out/2011)Palestra sobre BI Open Source @ USP (Out/2011)
Palestra sobre BI Open Source @ USP (Out/2011)
 
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto Alegre
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto AlegreInteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto Alegre
Inteligência de Negócios (BI) utilizando Software Livre @ FISL 12 - Porto Alegre
 
Curso de Pós-graduação em Business Intelligence
Curso de Pós-graduação em Business IntelligenceCurso de Pós-graduação em Business Intelligence
Curso de Pós-graduação em Business Intelligence
 
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...
Pentaho: Implementando um Projeto de BI baseado em ferramentas livres em inst...
 
Alianza IT4biz (Brasil) y StrateBI (España)
Alianza IT4biz (Brasil) y StrateBI (España)Alianza IT4biz (Brasil) y StrateBI (España)
Alianza IT4biz (Brasil) y StrateBI (España)
 
Aliança IT4biz (Brasil) e StrateBI (Espanha)
Aliança IT4biz (Brasil) e StrateBI (Espanha)Aliança IT4biz (Brasil) e StrateBI (Espanha)
Aliança IT4biz (Brasil) e StrateBI (Espanha)
 
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...
Pentaho: Inteligência de Negócios utilizando Software Livre - FliSOL São Paul...
 
IT4biz - Caso de Sucesso Pentaho - Dia % Brasil
IT4biz - Caso de Sucesso Pentaho - Dia % BrasilIT4biz - Caso de Sucesso Pentaho - Dia % Brasil
IT4biz - Caso de Sucesso Pentaho - Dia % Brasil
 
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...
Integração de ferramentas de código aberto (java, pentaho e android) e mapas,...
 
Apresentação Reembolso Fácil
Apresentação Reembolso FácilApresentação Reembolso Fácil
Apresentação Reembolso Fácil
 
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011
Pentaho: Inteligência de Negócios utilizando software livre @Campus Party 2011
 
Pentaho na campus party 2011
Pentaho na campus party 2011Pentaho na campus party 2011
Pentaho na campus party 2011
 
Pentaho: inteligência de negócios utilizando software livre
Pentaho: inteligência de negócios utilizando software livrePentaho: inteligência de negócios utilizando software livre
Pentaho: inteligência de negócios utilizando software livre
 

Kürzlich hochgeladen

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 

Kürzlich hochgeladen (20)

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 

Pentaho World 2018: Hands-on Training: Tackling Data Science Challenges with PDI (Friday, October 27th, 2017)