SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
Introduction	to	
Healthcare	Data	Analytics
with	Extreme	Tree	Models
Yubin	Park,	PhD
Chief	Technology	Officer
1
Who	am	I
• Co-founder	and	Chief	Technology	Officer	of	Accordion	Health,	Inc.
• PhD	from	the	University	of	Texas	at	Austin
• Advisor:	Professor	JoydeepGhosh
• Studied	Machine	Learning	and	Data	Mining,	with	a	special	focus	on	
healthcare	data
• Involved	in	various	industry	data	mining	projects
• USAA:	Life-time	modeling	of	customers
• SK	Telecom:	Smartphone	purchase	prediction,	usage	pattern	analysis
• LinkedIn	Corp.:	Related	search	keywords	recommendation
• Whole	Foods	Market:	Price	elasticity	modeling
• …
2
Accordion	Health
• Healthcare	Data	Analytics	Company
• Founded	in	2014	by
• Sriram Vishwanath,	PhD
• Yubin	Park,	PhD
• Joyce	Ho,	PhD
• A	team	of	data	scientists	and	medical	
professionals
• Help	healthcare	organizations	lower	costs	and	
improve	qualities
3
From	Health	Datapalooza 2014
Types	of	Problems	We	Solve
• Which	patient	is	likely	to	be	readmitted?
• Which	patient	is	likely	to	develop	type	2	diabetes?
• Which	patient	is	likely	to	adhere	to	his	medication?
• How	much	this	patient	will	cost	this	year?
• How	many	inpatient	admissions	this	patient	will	have	this	year?
• Which	physician	is	likely	to	follow	our	care	guideline?
• What	star	rating	will	our	organization	receive	this	year?
• …
4
Healthcare	Data	is	Messy
• Data	structure
• Unstructured	data	such	as	EHR
• Structured	data	such	as	claims
• Location
• Doctors’	offices,	insurance	companies,	governments,	
etc.
• Data	definition
• Different	definitions	for	different	communities
• Data	format
• Various	industry	formats
• Data	complexity
• Patients	going	in	and	out	of	systems
• Incomplete	data
• Regulations	&	requirements
• Source:	Health	Catalyst
5
My	Usual	Work	Flow
Summary	
Statistics
Visual	
Inspection
Data	Cleansing	
&	Feature	
Engineering	(1)
Baseline	
Models
Extreme	Tree	
Models
Data	Cleansing	
&	Feature	
Engineering	(2)
Custom
Extreme	Tree	
Models
Data	Cleansing	
&	Feature	
Engineering	(3)
Fully	
Customized	
Models
6
I	start	my	data	project	by	
checking	summary	
statistics,	distributions,	data	
errors,	and	applying	simple	
models.
Extreme	Tree	Models*	
serve	as	a	check	point
before	further
developing	customized	
models.
*Extreme	Tree	Models	refer	
to	a	class	of	models	that	use	
a	tree	as	a	base	classifier.
Why	Tree-based	Models
“Of	all	the	well-known	methods,	
decision	trees	come	closest	to	
meeting	the	requirements	for	
serving	as	an	off-the-shelf	
procedure	for	data	mining.”	
• J.	H.	Friedman,	R.	Tibshirani,	and	
T.	Hastie,.	The	Elements	of	
Statistical	Learning
7
How	to	Grow	a	Tree
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
8
Various	Kinds	of	Trees	– C4.5,	CART
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
9
Information	Gain	à C4.5
Gini	Impurity,	Variance	Reduction	à CART
- Quinlan,	J.	R.	(1993)	C4.5:	Programs	for	Machine	Learning.	Morgan	Kaufmann	
Publishers.
- Breiman,	Leo;	Friedman,	J.	H.;	Olshen,	R.	A.;	Stone,	C.	J.	(1984). Classification	and	
regression	trees.	Monterey,	CA:	Wadsworth	&	Brooks/Cole	Advanced	Books	&	Software.
Tree	à Forest
• Randomization	Methods
• Random	data	sampling
• Random	feature	sampling
• Random	cut-point	sampling
10
Various	Kinds	of	Forests	– Bagged	Trees
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
11
Sample	with	replacement,	and	many	trees
à Bagged	Trees
- Breiman,	L.	(1996b).	Bagging	predictors.	Machine	Learning,	24:2,	123–140.
Various	Kinds	of	Forests	– Random	Subspace
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
12
Select	a	random	subset	of	features
Then	find	the	best	feature/cut-point
- Ho,	T.	(1998).	The	Random	subspace	method	for	constructing	decision	forests.	
IEEE	Transactions	on	Pattern	Analysis	and	Machine	Intelligence,	20:8,	832–844.
Various	Kinds	of	Forests	– Random	Forests
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
13
Sample	with	replacement
Select	a	random	subset	of	features
Then	find	the	best	feature/cut-point
- Breiman,	L.	(2001).	Random	forests.	Machine	Learning,	45,	5–32.
Various	Kinds	of	Trees	– ExtraTrees
1. Start	with	a	dataset
2. Pick	a	splitting	feature
3. Pick	a	splitting	cut-point
4. Split	the	dataset	into	two	sets	based	on	the	splitting	feature	and	
cut-point
5. Repeat	from	Step	2	with	the	partitioned	datasets
14
Select	a	random	subset	of	(feature,	cut-point)	pairs	
Then	find	the	best	(feature,	cut-point)	pair
- Geurts,	P.,	Damien	E.,	and	Louis	W..(2006)		Extremely	randomized	trees.	
Machine	learning	63.1,	3-42.
Again,	Bias	vs	Variance
• Bias:	Error	from	model
• Variance:	Error	from	data
• Recursive	partition	à fewer	samples	as	
tree	grows
• Split	features/cut-points	are	susceptible	to	
training	samples
• Randomization	decreases	variance
• Image	Source:	Scott	Fortmann-Roe
15
Evolution	of	Bias	vs.	Variance	
16
- Geurts,	P.,	Damien	E.,	and	Louis	W..(2006)		Extremely	randomized	trees.	
Machine	learning	63.1,	3-42.
Bias	Variance	Trade-off
17Image	Source:	Scott	Fortmann-Roe
• Randomization	Methods	
reduces	variance
• However,	for	some	
problems,	reducing	the	
bias of	a	model	may	be	
more	critical	for	improving	
its	accuracy
• A very	complex	dataset	with	
many	variables	and	samples
Are	Tree	Models	are	High-Variance	Models?
• It	depends…
• Number	of	data	samples
• Number	of	features
• Data	complexity
• Randomization	Methods	
• Decrease	Variance
• But	increase	Bias
18
There	is	another	way	of	decreasing	the	
expected	error,	which
- Decrease	Bias
- May	increase	variance
Boosting:	Learn	from	Errors
19
Y =	f0(X),	where	E1 =	|Y-f0(X)|2
E1 =	f1(X),	where	E2 =	|Y-f1(X)|2
E2 =	f2(X),	where	E3 =	|Y-f2(X)|2
and	so	on...
Additive	Model	Framework
• Additive	Model	Framework	
generalizes	boosting,	
stacking,	and	other	variants
• Source:	J.	H.	Friedman,	R.	
Tibshirani,	and	T.	Hastie,.	
The	Elements	of	Statistical	
Learning (ESL)
20
Gradient	Boosting	Machine
• Additive	Models	can	be	numerically	
optimized	via	Gradient	Descent
• Source:	Wikipedia and	ESL
21
- Friedman,	Jerome	H.	(2001)	Greedy	function	approximation:	a	gradient	
boosting	machine.	Annals	of	statistics:	1189-1232.
Extreme	Gradient	Boosting	(XGBoost)
22
Various	Data	Mining	
Competitions	in	Kaggle
One	thing	they	have	in	
common:
- They	all	used	XGBoost
What’s	so	Special	about	XGBoost
• XGBoost implements	the	basic	idea	of	GBM	with	some	tweaks,	such	
as:
• Regularization	of	base	trees
• Approximate	split	finding
• Weighted	quantile sketch
• Sparsity-aware	split	finding
• Cache-aware	block	structure	for	out-of-core	computation
• “XGBoost scales	beyond	billions	of	examples	using	far	fewer	resources	
than	existing	systems.”	– T.	Chen	and	C.	Guestrin
23
Going	Further	Extreme
• XGBoost of	XGBoost
• Bagging	of	XGBoost
• Bagging	of	XGBoost of	
XGBoost of	…
• Stacking,	Bagging,	Sampling,	
etc.
• Source:	Kaggle
24
Real-world	Example:	Predict	MedAdh Scores
• Centers	for	Medicare	and	Medicaid	Services	(CMS)	measures	the	
performance	of	Medicare	Advantage	(MA)	Plans	via	Star	Rating	
System
• Medication	Adherence	(MedAdh)	is	one	of	the	most	important	
quality	measures	in	the	Star	Rating	System
• MA	Plans	want	to	know	how	much	their	MedAdh scores	will	change	
in	the	next	two	years
25
Predict	MedAdh Scores
• Where	can	I	find	data
• Download	from	the	CMS	Part	C	and	D	Performance	Data	webpage
• Constructing	datasets
• MedAdh Data	from	2012,	2013	à Training	Features,	Xtrain
• MedAdh Data	from	2015	à Training	Label,	Ytrain
• MedAdh Data	from	2013,	2014	à Test	Features,	Xtest
• MedAdh Data	from	2016	à Test	Label,	Ytest
26
Lots	of	Missing	Data
• Not	all	MA	plans	are	measured	for	a	given	year	à Mean	Imputation
27
X1,X2,X3,X4,X5,X6,X7,X8,X9,Y
...
71.2,72.7,69.9,75.2,75.9,71.0,1.8
-999,-999,-999,75.8,72.5,68.8,-4.8
61.8,59.4,57.7,57.3,59.3,58.3,16.7
...
-999,-999,-999,82.8,80.0,69.8,-11.8
73.8,73.2,71.8,74.5,76.1,72.9,4.5
Try	Various	Models
• From	simple	models	like	Linear	Regression,	Decision	Tree	to	extreme-
tree	models	such	as	ExtraTrees and	Gradient	Boosting
28
from sklearn import linear_model
from sklearn import tree
from sklearn.utils import resample
from sklearn.metrics import mean_squared_error
from sklearn.ensemble import ExtraTreesRegressor
from sklearn.ensemble import GradientBoostingRegressor
Try	Various	Models	– code	snippet
• From	simple	models	like	Linear	Regression,	Decision	Tree	to	extreme-
tree	models	such	as	ExtraTrees and	Gradient	Boosting
29
lm =	linear_model.LinearRegression()
dt =	tree.DecisionTreeRegressor()
etr =	ExtraTreesRegressor(n_estimators=100, max_depth=10)
gbr =	GradientBoostingRegressor(n_estimators=500,	
learning_rate=0.25,	
max_depth=8)
Try	Various	Models	– results
30
$ python	test.py
…
RMSE	Results	
lm:	2.7125536923
dt:	3.10460672029
etr:	2.18597303421
gbr:	2.02698129388
Try	Various	Models	– results
31
Extreme	Tree	Models	
exhibit	significant	
improvements	in	
accuracies	compared	to	
simple	models.
One	can	build	more	
sophisticated	models	
based	on	the	error	
characteristics	of	these	
models.
Contact
• yubin	[at]	accordionhealth [dot]	com
32

Weitere ähnliche Inhalte

Was ist angesagt?

Health IT for Cardiologists (March 23, 2018)
Health IT for Cardiologists (March 23, 2018)Health IT for Cardiologists (March 23, 2018)
Health IT for Cardiologists (March 23, 2018)Nawanan Theera-Ampornpunt
 
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...DrBonnie360
 
Informatics for Health Policy and Systems Research: Lessons Learned from a St...
Informatics for Health Policy and Systems Research: Lessons Learned from a St...Informatics for Health Policy and Systems Research: Lessons Learned from a St...
Informatics for Health Policy and Systems Research: Lessons Learned from a St...Borwornsom Leerapan
 
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...Building the Next Generation's Regional Health IT Workforce: Past Journeys an...
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...Nawanan Theera-Ampornpunt
 
Meaningful Use of Electronic Health Records (October 16, 2016)
Meaningful Use of Electronic Health Records (October 16, 2016)Meaningful Use of Electronic Health Records (October 16, 2016)
Meaningful Use of Electronic Health Records (October 16, 2016)Nawanan Theera-Ampornpunt
 
CME Industry Outlook: The Coming Integration into Talent Management Ecosystems
CME Industry Outlook: The Coming Integration into Talent Management EcosystemsCME Industry Outlook: The Coming Integration into Talent Management Ecosystems
CME Industry Outlook: The Coming Integration into Talent Management EcosystemsPegasus Intellectual Capital Solutions LLC
 
Principles of Health IT Application in Healthcare (October 12, 2020)
Principles of Health IT Application in Healthcare (October 12, 2020)Principles of Health IT Application in Healthcare (October 12, 2020)
Principles of Health IT Application in Healthcare (October 12, 2020)Nawanan Theera-Ampornpunt
 
Clinical Information Systems (Part 2) - Health IT in Clinical Settings
Clinical Information Systems (Part 2) - Health IT in Clinical SettingsClinical Information Systems (Part 2) - Health IT in Clinical Settings
Clinical Information Systems (Part 2) - Health IT in Clinical SettingsNawanan Theera-Ampornpunt
 
An Introduction to Clinical Informatics
An Introduction to Clinical InformaticsAn Introduction to Clinical Informatics
An Introduction to Clinical InformaticsCorinn Pope
 
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)Nawanan Theera-Ampornpunt
 
Clinical Analytics
Clinical AnalyticsClinical Analytics
Clinical AnalyticsMichael Bice
 
Clinical Information Systems (Part 1) - Health IT: The Big Picture
Clinical Information Systems (Part 1) - Health IT: The Big PictureClinical Information Systems (Part 1) - Health IT: The Big Picture
Clinical Information Systems (Part 1) - Health IT: The Big PictureNawanan Theera-Ampornpunt
 
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)Nawanan Theera-Ampornpunt
 
Accelerating Clinical Research For Inclusive Development
Accelerating  Clinical  Research For  Inclusive  DevelopmentAccelerating  Clinical  Research For  Inclusive  Development
Accelerating Clinical Research For Inclusive DevelopmentGopalkrishna Pai
 

Was ist angesagt? (20)

Health IT for Cardiologists (March 23, 2018)
Health IT for Cardiologists (March 23, 2018)Health IT for Cardiologists (March 23, 2018)
Health IT for Cardiologists (March 23, 2018)
 
Vishuo Biomedical
Vishuo BiomedicalVishuo Biomedical
Vishuo Biomedical
 
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...
Using Big Data to Personalize the Healthcare Experience in Cancer, Genomics a...
 
Informatics for Health Policy and Systems Research: Lessons Learned from a St...
Informatics for Health Policy and Systems Research: Lessons Learned from a St...Informatics for Health Policy and Systems Research: Lessons Learned from a St...
Informatics for Health Policy and Systems Research: Lessons Learned from a St...
 
Health IT Beyond Hospitals (March 21, 2018)
Health IT Beyond Hospitals (March 21, 2018)Health IT Beyond Hospitals (March 21, 2018)
Health IT Beyond Hospitals (March 21, 2018)
 
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...Building the Next Generation's Regional Health IT Workforce: Past Journeys an...
Building the Next Generation's Regional Health IT Workforce: Past Journeys an...
 
Meaningful Use of Electronic Health Records (October 16, 2016)
Meaningful Use of Electronic Health Records (October 16, 2016)Meaningful Use of Electronic Health Records (October 16, 2016)
Meaningful Use of Electronic Health Records (October 16, 2016)
 
CME Industry Outlook: The Coming Integration into Talent Management Ecosystems
CME Industry Outlook: The Coming Integration into Talent Management EcosystemsCME Industry Outlook: The Coming Integration into Talent Management Ecosystems
CME Industry Outlook: The Coming Integration into Talent Management Ecosystems
 
Principles of Health IT Application in Healthcare (October 12, 2020)
Principles of Health IT Application in Healthcare (October 12, 2020)Principles of Health IT Application in Healthcare (October 12, 2020)
Principles of Health IT Application in Healthcare (October 12, 2020)
 
Clinical informatics I: Roles of Health IT
Clinical informatics I: Roles of Health ITClinical informatics I: Roles of Health IT
Clinical informatics I: Roles of Health IT
 
Health IT for Executives
Health IT for ExecutivesHealth IT for Executives
Health IT for Executives
 
Clinical Information Systems (Part 2) - Health IT in Clinical Settings
Clinical Information Systems (Part 2) - Health IT in Clinical SettingsClinical Information Systems (Part 2) - Health IT in Clinical Settings
Clinical Information Systems (Part 2) - Health IT in Clinical Settings
 
An Introduction to Clinical Informatics
An Introduction to Clinical InformaticsAn Introduction to Clinical Informatics
An Introduction to Clinical Informatics
 
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)
Introduction to Health Informatics and Health IT (Part 2) (February 10, 2021)
 
Clinical Analytics
Clinical AnalyticsClinical Analytics
Clinical Analytics
 
Clinical Information Systems (Part 1) - Health IT: The Big Picture
Clinical Information Systems (Part 1) - Health IT: The Big PictureClinical Information Systems (Part 1) - Health IT: The Big Picture
Clinical Information Systems (Part 1) - Health IT: The Big Picture
 
Overview of Health IT
Overview of Health ITOverview of Health IT
Overview of Health IT
 
Use of ICT in Healthcare
Use of ICT in HealthcareUse of ICT in Healthcare
Use of ICT in Healthcare
 
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)
One Pathway to Thailand's eHealth: A Personal Quick Thought (February 14, 2016)
 
Accelerating Clinical Research For Inclusive Development
Accelerating  Clinical  Research For  Inclusive  DevelopmentAccelerating  Clinical  Research For  Inclusive  Development
Accelerating Clinical Research For Inclusive Development
 

Andere mochten auch

ACDC: Alpha-Carving Decision Chain for Risk Stratification
ACDC: Alpha-Carving Decision Chain for Risk StratificationACDC: Alpha-Carving Decision Chain for Risk Stratification
ACDC: Alpha-Carving Decision Chain for Risk StratificationYubin Park
 
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water"
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water" Remix Conference 2015—Sam Hashemi, "Remember, This Is Water"
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water" Remix Software
 
China ultra high voltage equipment industry market forecast and investment st...
China ultra high voltage equipment industry market forecast and investment st...China ultra high voltage equipment industry market forecast and investment st...
China ultra high voltage equipment industry market forecast and investment st...Qianzhan Intelligence
 
AshokaHub - A cloud – based social networking platform using Ruby on Rails
AshokaHub - A cloud – based social networking platform using Ruby on RailsAshokaHub - A cloud – based social networking platform using Ruby on Rails
AshokaHub - A cloud – based social networking platform using Ruby on RailsNeev Technologies
 
China venture capital industry indepth research and investment strategic plan...
China venture capital industry indepth research and investment strategic plan...China venture capital industry indepth research and investment strategic plan...
China venture capital industry indepth research and investment strategic plan...Qianzhan Intelligence
 
Cesec2015 - Arduino Designer
Cesec2015 - Arduino DesignerCesec2015 - Arduino Designer
Cesec2015 - Arduino Designermelbats
 
listing output program C
listing output program Clisting output program C
listing output program CAdjievanGestu
 
Trey Gordon_Resume 2016
Trey Gordon_Resume 2016Trey Gordon_Resume 2016
Trey Gordon_Resume 2016Trey Gordon
 
Renuncia de Felipe Bulnes - Agente Chileno en La Haya
Renuncia de Felipe Bulnes - Agente Chileno en La Haya Renuncia de Felipe Bulnes - Agente Chileno en La Haya
Renuncia de Felipe Bulnes - Agente Chileno en La Haya Christian Pino Lanata
 
China port and harbor industry market forecast and investment strategy report...
China port and harbor industry market forecast and investment strategy report...China port and harbor industry market forecast and investment strategy report...
China port and harbor industry market forecast and investment strategy report...Qianzhan Intelligence
 
Підручник
ПідручникПідручник
ПідручникKPG_KPG
 

Andere mochten auch (20)

ACDC: Alpha-Carving Decision Chain for Risk Stratification
ACDC: Alpha-Carving Decision Chain for Risk StratificationACDC: Alpha-Carving Decision Chain for Risk Stratification
ACDC: Alpha-Carving Decision Chain for Risk Stratification
 
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water"
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water" Remix Conference 2015—Sam Hashemi, "Remember, This Is Water"
Remix Conference 2015—Sam Hashemi, "Remember, This Is Water"
 
Qodamah's Recommendation
Qodamah's RecommendationQodamah's Recommendation
Qodamah's Recommendation
 
China ultra high voltage equipment industry market forecast and investment st...
China ultra high voltage equipment industry market forecast and investment st...China ultra high voltage equipment industry market forecast and investment st...
China ultra high voltage equipment industry market forecast and investment st...
 
ECUADOR CULTURAL
ECUADOR CULTURALECUADOR CULTURAL
ECUADOR CULTURAL
 
AshokaHub - A cloud – based social networking platform using Ruby on Rails
AshokaHub - A cloud – based social networking platform using Ruby on RailsAshokaHub - A cloud – based social networking platform using Ruby on Rails
AshokaHub - A cloud – based social networking platform using Ruby on Rails
 
Ephata 611
Ephata 611Ephata 611
Ephata 611
 
Classrooms
ClassroomsClassrooms
Classrooms
 
China venture capital industry indepth research and investment strategic plan...
China venture capital industry indepth research and investment strategic plan...China venture capital industry indepth research and investment strategic plan...
China venture capital industry indepth research and investment strategic plan...
 
THN presents13016
THN presents13016THN presents13016
THN presents13016
 
Cesec2015 - Arduino Designer
Cesec2015 - Arduino DesignerCesec2015 - Arduino Designer
Cesec2015 - Arduino Designer
 
0090111574
 0090111574 0090111574
0090111574
 
listing output program C
listing output program Clisting output program C
listing output program C
 
Trey Gordon_Resume 2016
Trey Gordon_Resume 2016Trey Gordon_Resume 2016
Trey Gordon_Resume 2016
 
Renuncia de Felipe Bulnes - Agente Chileno en La Haya
Renuncia de Felipe Bulnes - Agente Chileno en La Haya Renuncia de Felipe Bulnes - Agente Chileno en La Haya
Renuncia de Felipe Bulnes - Agente Chileno en La Haya
 
China port and harbor industry market forecast and investment strategy report...
China port and harbor industry market forecast and investment strategy report...China port and harbor industry market forecast and investment strategy report...
China port and harbor industry market forecast and investment strategy report...
 
NOTICIAS que vienen para el 2016
NOTICIAS que vienen para el 2016 NOTICIAS que vienen para el 2016
NOTICIAS que vienen para el 2016
 
Підручник
ПідручникПідручник
Підручник
 
Merry Xmas Joyeux Nöel - TLTP
Merry Xmas Joyeux Nöel - TLTPMerry Xmas Joyeux Nöel - TLTP
Merry Xmas Joyeux Nöel - TLTP
 
Lecture1
Lecture1Lecture1
Lecture1
 

Ähnlich wie Healthcare Data Analytics with Extreme Tree Models

Data Analytics in Healthcare (short)
Data Analytics in Healthcare (short)Data Analytics in Healthcare (short)
Data Analytics in Healthcare (short)Yubin Park
 
Nikhil anmol pres_092014_1.0_final_2222
Nikhil anmol pres_092014_1.0_final_2222Nikhil anmol pres_092014_1.0_final_2222
Nikhil anmol pres_092014_1.0_final_2222nikhilaptsi
 
Digital_Twin_-_Tina-Paul-Tanveer.pptx
Digital_Twin_-_Tina-Paul-Tanveer.pptxDigital_Twin_-_Tina-Paul-Tanveer.pptx
Digital_Twin_-_Tina-Paul-Tanveer.pptxMohammedSakhlain
 
Marketing Plan for an Android App- "Healcare"
Marketing Plan for an Android App- "Healcare" Marketing Plan for an Android App- "Healcare"
Marketing Plan for an Android App- "Healcare" Dinesh Venkatarathna
 
Alternative Medicines and Therapies Market Competitive Research And Precise O...
Alternative Medicines and Therapies Market Competitive Research And Precise O...Alternative Medicines and Therapies Market Competitive Research And Precise O...
Alternative Medicines and Therapies Market Competitive Research And Precise O...subishsam
 
UCSF CER - What PCORI Wants (Symposium 2013)
UCSF CER - What PCORI Wants (Symposium 2013)UCSF CER - What PCORI Wants (Symposium 2013)
UCSF CER - What PCORI Wants (Symposium 2013)CTSI at UCSF
 
Generating Quality Data through Collaborative Research with an ACO
Generating Quality Data through Collaborative Research with an ACOGenerating Quality Data through Collaborative Research with an ACO
Generating Quality Data through Collaborative Research with an ACOTodd Berner MD
 
Wake up Pharma and look into your Big data
Wake up Pharma and look into your Big data Wake up Pharma and look into your Big data
Wake up Pharma and look into your Big data Yigal Aviv
 
Patient Centered Care: Investing in a Patient Education Solution
Patient Centered Care: Investing in a Patient Education SolutionPatient Centered Care: Investing in a Patient Education Solution
Patient Centered Care: Investing in a Patient Education SolutionKrames Patient Education
 
Communicating for a Research Institution
Communicating for a Research InstitutionCommunicating for a Research Institution
Communicating for a Research InstitutionKara Gavin
 
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012Elise Schadauer
 
Policy and Funding for CER: Making Sense of a Confusing Landscape
Policy and Funding for CER: Making Sense of a Confusing Landscape Policy and Funding for CER: Making Sense of a Confusing Landscape
Policy and Funding for CER: Making Sense of a Confusing Landscape CTSI at UCSF
 
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...Nawanan Theera-Ampornpunt
 
Digital Health Technology: The Ultimate Patient Advocate
Digital Health Technology: The Ultimate Patient AdvocateDigital Health Technology: The Ultimate Patient Advocate
Digital Health Technology: The Ultimate Patient AdvocateDavid Lee Scher, MD
 
Why FIDO Matters: Healthcare Services
Why FIDO Matters: Healthcare ServicesWhy FIDO Matters: Healthcare Services
Why FIDO Matters: Healthcare ServicesFIDO Alliance
 
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...Donald Nease
 

Ähnlich wie Healthcare Data Analytics with Extreme Tree Models (20)

Data Analytics in Healthcare (short)
Data Analytics in Healthcare (short)Data Analytics in Healthcare (short)
Data Analytics in Healthcare (short)
 
Nikhil anmol pres_092014_1.0_final_2222
Nikhil anmol pres_092014_1.0_final_2222Nikhil anmol pres_092014_1.0_final_2222
Nikhil anmol pres_092014_1.0_final_2222
 
Digital_Twin_-_Tina-Paul-Tanveer.pptx
Digital_Twin_-_Tina-Paul-Tanveer.pptxDigital_Twin_-_Tina-Paul-Tanveer.pptx
Digital_Twin_-_Tina-Paul-Tanveer.pptx
 
Marketing Plan for an Android App- "Healcare"
Marketing Plan for an Android App- "Healcare" Marketing Plan for an Android App- "Healcare"
Marketing Plan for an Android App- "Healcare"
 
Alternative Medicines and Therapies Market Competitive Research And Precise O...
Alternative Medicines and Therapies Market Competitive Research And Precise O...Alternative Medicines and Therapies Market Competitive Research And Precise O...
Alternative Medicines and Therapies Market Competitive Research And Precise O...
 
UCSF CER - What PCORI Wants (Symposium 2013)
UCSF CER - What PCORI Wants (Symposium 2013)UCSF CER - What PCORI Wants (Symposium 2013)
UCSF CER - What PCORI Wants (Symposium 2013)
 
Generating Quality Data through Collaborative Research with an ACO
Generating Quality Data through Collaborative Research with an ACOGenerating Quality Data through Collaborative Research with an ACO
Generating Quality Data through Collaborative Research with an ACO
 
Wake up Pharma and look into your Big data
Wake up Pharma and look into your Big data Wake up Pharma and look into your Big data
Wake up Pharma and look into your Big data
 
Patient Centered Care: Investing in a Patient Education Solution
Patient Centered Care: Investing in a Patient Education SolutionPatient Centered Care: Investing in a Patient Education Solution
Patient Centered Care: Investing in a Patient Education Solution
 
Communicating for a Research Institution
Communicating for a Research InstitutionCommunicating for a Research Institution
Communicating for a Research Institution
 
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012
Social Media: Diving in Without Sinking - Life Science Alley - Nov 2012
 
The Digital KOL 6.2015
The Digital KOL 6.2015The Digital KOL 6.2015
The Digital KOL 6.2015
 
Health IT: The Big Picture (July 2, 2015)
Health IT: The Big Picture (July 2, 2015)Health IT: The Big Picture (July 2, 2015)
Health IT: The Big Picture (July 2, 2015)
 
Policy and Funding for CER: Making Sense of a Confusing Landscape
Policy and Funding for CER: Making Sense of a Confusing Landscape Policy and Funding for CER: Making Sense of a Confusing Landscape
Policy and Funding for CER: Making Sense of a Confusing Landscape
 
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...
Preparing for Informatics Careers and Trends in the Age of Meaningful Use - I...
 
Digital Health Technology: The Ultimate Patient Advocate
Digital Health Technology: The Ultimate Patient AdvocateDigital Health Technology: The Ultimate Patient Advocate
Digital Health Technology: The Ultimate Patient Advocate
 
Overview of Health IT
Overview of Health ITOverview of Health IT
Overview of Health IT
 
Why FIDO Matters: Healthcare Services
Why FIDO Matters: Healthcare ServicesWhy FIDO Matters: Healthcare Services
Why FIDO Matters: Healthcare Services
 
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...
What's on the Horizon, How HIT Supports Practice Transformation and Chronic D...
 
Cdl conference mobile learning - 4-12
Cdl conference   mobile learning - 4-12Cdl conference   mobile learning - 4-12
Cdl conference mobile learning - 4-12
 

Kürzlich hochgeladen

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 

Kürzlich hochgeladen (20)

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 

Healthcare Data Analytics with Extreme Tree Models