SlideShare a Scribd company logo
1 of 30
Download to read offline
Data	Science	Lunch	Seminar:
A/B	Testing	Theory	and	Practice
Nicholas	Arcolano
19	September	2016
What	is	an	A/B	test?
Consider	a	random	experiment	with	binary	outcome
Coin	flip,	disease	recovery,	purchasing	a	product	("conversion")
Assume	there	is	some	true	"baseline"	probability	of	a	positive	outcome
We	change	something	that	(we	think)	will	alter	this	baseline
How	do	we	know	if	it	actually	did?
Experiment!
The	original	version	is	the	control	a.k.a.	"variant	A"
The	new	version	is	the	test	a.k.a.	"variant	B"
If	A	and	B	are	"different	enough",	we	decide	our	intervention	had	an	effect—
otherwise,	we	decide	that	it	didn't
A	"simple"	example
Consider	two	coins,	with	unknown	probabilites	of	heads	 	and	 ,	and	assume
one	of	the	following	two	hypotheses	is	true:
	(null	hypothesis):	
	(alternate	hypothesis):	
How	do	we	decide	which	is	true?
Experiment!
Flip	them	both	and	see	how	different	their	outcomes	are
Given	 	flips	of	each	coin,	we	will	observe	some	number	 	heads	for
coin	#1	and	 	heads	for	coin	#2
p1 p2
H0 =p1 p2
H1 <p1 p2
n m1
m2
If	we	knew	both	distributions,	we	could	just	do	the	optimal	thing	prescribed	by
classical	binary	hypothesis	testing—but	this	would	require	knowing	 	and	
Instead,	we	need	some	other	statistical	test	that	will	take	 ,	 ,	and	 	and
give	us	a	number	we	can	threshold	to	make	a	decision
p1 p2
n m1 m2
A	review	of	statistical	tests,	errors,	and	power
Basic	approach	to	statistical	testing:
Determine	a	test	statistic:	random	variable	that	depends	on	 ,	 ,
and	
Want	a	statistic	whose	distribution	given	the	null	hypothesis	is
computable	(exactly	or	approximately)
If	the	data	we	observe	puts	us	in	the	tails	of	the	distribution,	we	say
that	 	is	too	unlikely	and	"reject	the	null	hypothesis"	(choose	 )
-value:	tail	probability	of	the	sampling	distribution	given	the	null
hypothesis	is	true	( -value	too	small,	reject	the	null)
n m1
m2
H0 H1
p
p
Often	summarize	the	data	as	a	2	x	2	contingency	table
Heads Tails
Row
totals
Coin	#1
Coin	#2
Column
totals
Statistical	test	takes	this	table	and	produces	a	 -value,	which	we	then
threshold	(e.g.	 )
m1 n − m1 n
m2 n − m2 n
+m1 m2 2n − −m1 m2 2n
p
p < 0.05
Types	of	errors
Four	potential	outcomes	of	the	test:
	is	true,	choose	 :	true	positive	(correct	detection)
	is	true,	choose	 :	true	negative
	is	true,	choose	 :	false	positive	(Type	I	error)
	is	true,	choose	 :	false	negative	(Type	II	error)
H1 H1
H0 H0
H0 H1
H1 H0
Power	and	false	positive	rate
Denote	the	probabilies	of	false	positives	and	false	negatives	as	 	and	
Since	 -value	represents	the	tail	probability	under	the	null,	rejecting	
corresponds	to	false	positive	rate	of	 	(for	a	one-sided	test)
Refer	to	probability	of	correct	detection
as	the	power	of	the	test
α β
p p < α
α
Pr (choose | true) = 1 − βH1 H1
Relationship	to	precision	and	recall
Assume	we	do	this	test	a	large	number	of	times,	so	that	observed	rates	of
success/failure	represent	true	probabilities
Counts	for	each	possible	outcome	 ,	 ,	 ,	
False	alarm	rate:	
Recall	(correct	detection	rate):	
Precision:	
TP TN FP FN
α = FP
FP+TN
R = 1 − β = TP
TP+FN
P = TP
TP+FP
We	also	have	a	prior	probability	for	
Traditional	hypothesis	testing	doesn't	really	take	this	into	account
The	relationship	between	 ,	 ,	precision	and	prior	is	given	by
So,	for	a	test	with	fixed	power	and	false	positive	rate,	precision	will	scale	with
the	prior	probability	of	
H1
π =
TP + FN
TP + FN + TN + FP
α β
α = (1 − β)
P
1 − P
π
1 − π
H1
Examples	of	tests
Fisher's	exact	test
Observe	that	under	the	null,	the	row	and	column	totals	follow	a
hypergeometric	distribution
Reject	the	null	if	the	differences	between	the	row	and	column	totals	produces
a	 -value	less	than	the	given	threshold
"Exact	test":	doesn't	need	to	hold	only	when	 	is	large
Typically	used	when	sample	sizes	are	"small"
Since	distribution	can	only	take	on	discrete	values,	can	be	conservative
p
n
Pearson's	chi-squared	test
Compare	the	observed	frequencies	of	success	 	and	
If	 	is	true,	then	the	variance	of	 	is
where
The	test	statistic
under	the	null	converges	to	a	 	distribution
Compute	the	chi-square	tail	probability	of	the	test	statistic,	reject	the	null	if	it
exceeds	the	threshold
/nm1 /nm2
H0 /n − /nm1 m2
=σ2 2 (1 − )π̂ π̂
n
=π̂
+m1 m2
2n
=z2 ( /n − /n)m1 m2
2
σ2
χ2
Back	to	our	example
Recall:
	(null	hypothesis):	
	(alternate	hypothesis):	
Assume	we	get	to	flip	each	coin	 	times,	and	let's	look	at	some
examples	for	each	hypothesis
H0 =p1 p2
H1 <p1 p2
n = 100
Case	#1:	Alternate	hypothesis	is	true
In [3]: n = 100
p1 = 0.40
p2 = 0.60
# Compute distributions
x = np.arange(0, n+1)
pmf1 = stats.binom.pmf(x, n, p1)
pmf2 = stats.binom.pmf(x, n, p2)
plot(x, pmf1, pmf2)
In [4]:
In [5]:
# Example outcomes
m1, m2 = 40, 60
table = [[m1, n-m1], [m2, n-m2]]
chi2, pval, dof, expected = stats.chi2_contingency(table)
decision = 'reject H0' if pval < 0.05 else 'accept H0'
print('{} ({})'.format(pval, decision))
0.00720957076474 (reject H
0)
m1, m2 = 43, 57
table = [[m1, n-m1], [m2, n-m2]]
chi2, pval, dof, expected = stats.chi2_contingency(table)
decision = 'reject H0' if pval < 0.05 else 'accept H0'
print('{} ({})'.format(pval, decision))
0.0659920550593 (accept H
0)
Case	#2:	Null	hypothesis	true
In [6]: n = 100
p1 = 0.50
p2 = 0.50
# Compute distributions
x = np.arange(0, n+1)
pmf1 = stats.binom.pmf(x, n, p1)
pmf2 = stats.binom.pmf(x, n, p2)
plot(x, pmf1, pmf2)
In [7]:
In [8]:
# Example outcomes
m1, m2 = 49, 51
table = [[m1, n-m1], [m2, n-m2]]
chi2, pval, dof, expected = stats.chi2_contingency(table)
decision = 'reject H0' if pval < 0.05 else 'accept H0'
print('{} ({})'.format(pval, decision))
0.887537083982 (accept H
0)
# Example outcomes
m1, m2 = 42, 58
table = [[m1, n-m1], [m2, n-m2]]
chi2, pval, dof, expected = stats.chi2_contingency(table)
decision = 'reject H0' if pval < 0.05 else 'accept H0'
print('{} ({})'.format(pval, decision))
0.0338948535247 (reject H
0)
Sample	size	calculation
Often	what	we	really	want	to	know	is:	how	many	flips	to	we	need	to	reach	a
certain	level	of	confidence	that	we	are	really	observing	a	difference?
Factors	affecting	required	sample	size
Baseline	probability	 :	how	often	does	anything	interesting	happen?
Minimum	observable	difference	that	we	want	to	be	able	to	detect	between	
	and	
Desired	power	of	the	test:	if	there	is	a	real	difference,	how	likely	do	we	want
to	be	to	observe	it?
Desired	false	positive	rate	of	the	test
So	in	practice,	if	we	have	a	good	guess	at	 	and	the	minimum	 	that	we	can	accept
detecting,	we	can	estimate	a	minimum	
p1
p2 p1
p1 p2
n
Casagrande	et	al	(1978)
Approximate	formula	gives	the	desired	sample	size	 	as	a	function	of	 ,	 ,	 ,	and	 :
where	 	is	a	 	"correction	factor"	given	by
with	 	and	where	 	denotes	the	standard	normal	quantile	function,	i.e.	
	is	location	of	the	 -th	quantile	for	
n p1 p2 α β
n = A
⎡
⎣
⎢
⎢
⎢
1 + 1 +
4( − )p1 p2
A
‾ ‾‾‾‾‾‾‾‾‾‾
√
2( − )p1 p2
⎤
⎦
⎥
⎥
⎥
2
A χ2
A = ,[ + ]z1−α 2 (1 − )p¯ p¯‾ ‾‾‾‾‾‾‾‾√ z1−β (1 − ) + (1 − )p1 p1 p2 p2‾ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾√
2
= ( + )/2p¯ p1 p2 zp
= (p)zp Φ−1 p N(0, 1)
Example
In [9]: p1, p2 = 0.40, 0.60
alpha = 0.05
beta = 0.05
# Evaluate quantile functions
p_bar = (p1 + p2)/2.0
za = stats.norm.ppf(1 - alpha/2) # Two-sided test
zb = stats.norm.ppf(1 - beta)
# Compute correction factor
A = (za*np.sqrt(2*p_bar*(1-p_bar)) + zb*np.sqrt(p1*(1-p1) + p2*(1-p2)))**2
# Estimate samples required
n = A*(((1 + np.sqrt(1 + 4*(p1-p2)/A))) / (2*(p1-p2)))**2
print n
149.2852619
21
A	more	practical	(and	scarier)	example
Assume	we	have	5.00%	conversion	on	something	we	care	about	(e.g.	click-
through	on	a	purchase	page)
We	introduce	a	feature	that	we	think	will	change	conversions	by	3%	(i.e.	from
5.00%	to	5.15%)
We	want	95%	power	and	5%	false	positive	rate
In [10]:
So,	for	test	and	control	combined	we'll	need	at	least	 	1.1	million	users.
p1, p2 = 0.0500, 0.0515
alpha = 0.05
beta = 0.05
# Evaluate quantile functions
p_bar = (p1 + p2)/2.0
za = stats.norm.ppf(1 - alpha/2) # Two-sided test
zb = stats.norm.ppf(1 - beta)
# Compute correction factor
A = (za*np.sqrt(2*p_bar*(1-p_bar)) + zb*np.sqrt(p1*(1-p1) + p2*(1-p2)))**2
# Estimate samples required
n = A*(((1 + np.sqrt(1 + 4*(p1-p2)/A))) / (2*(p1-p2)))**2
print n
555118.7638
31
2n =
Also,	let's	verify	that	this	calculation	even	works...
In [11]: n = 555119
n_trials = 10000
# Simulate experimental results when null is true
control0 = stats.binom.rvs(n, p1, size=n_trials)
test0 = stats.binom.rvs(n, p1, size=n_trials) # Test and control are the sa
me
tables0 = [[[a, n-a], [b, n-b]] for a, b in zip(control0, test0)]
results0 = [stats.chi2_contingency(T) for T in tables0]
decisions0 = [x[1] <= alpha for x in results0]
# Simulate Experimental results when alternate is true
control1 = stats.binom.rvs(n, p1, size=n_trials)
test1 = stats.binom.rvs(n, p2, size=n_trials) # Test and control are differ
ent
tables1 = [[[a, n-a], [b, n-b]] for a, b in zip(control1, test1)]
results1 = [stats.chi2_contingency(T) for T in tables1]
decisions1 = [x[1] <= alpha for x in results1]
# Compute false alarm and correct detection rates
alpha_est = sum(decisions0)/float(n_trials)
power_est = sum(decisions1)/float(n_trials)
print('Theoretical false alarm rate = {:0.4f}, '.format(alpha) +
'empirical false alarm rate = {:0.4f}'.format(alpha_est))
print('Theoretical power = {:0.4f}, '.format(1 - beta) +
'empirical power = {:0.4f}'.format(power_est))
Theoretical false alarm rate = 0.0500, empirical false alarm rate = 0.04
82
Theoretical power = 0.9500, empirical power = 0.9466
What	if	n	is	too	big?
The	main	things	influencing	 	are
How	extreme	 	is—very	rare	successes	make	it	hard	to	reach	significance
The	difference	between	 	and	 —small	differences	are	much	harder	to
measure
What	can	we	do	if	 	is	too	big	to	handle?
Typically	we	won't	mess	with	 	and	 	too	much
So,	our	only	options	are	to	adjust	what	we	expect	to	get	for	 	and	 	(i.e.
change	our	minimum	measurable	effect)
Or,	we	can	try	to	increase	 	by	measuring	something	that	is	more	common
(e.g.	clicks	instead	of	purchases)
n
p1
p1 p2
n
α β
p1 p2
p1
Practical	issues	with	A/B	testing
Sometimes	it's	hard	to	target	the	right	group	(e.g.	email	tests)
It's	easy	to	screw	them	up
Unexpected	variations	between	control	and	test
Contamination	between	tests	(test	crossover)
Randomization	issues	(e.g.	individuals	vs	groups)
People	(especially	those	outside	of	data	science)	are	tempted	to	abuse	them
Multiple	testing
Searching	for	false	positives
Issue	of	prior	probabilities
Can	we	know	if	a	test	is	a	"sure	thing"	or	not?
If	we	did,	then	should	we	even	be	testing	it?
Overall,	you	can	spend	a	lot	of	time	and	effort,	especially	if	you	want	to
measure	small	changes	in	rare	phenomena
Some	alternatives	to	traditional	A/B	testing
Multi-armed	bandit	theory
Approaches	for	simultaneous	exploration	and	exploitation
Given	a	set	of	random	experiments	I	could	perform,	how	do	I	choose	among
them	(in	order	and	quantity)?
Appropriate	when	you	want	to	"earn	while	you	learn"
Good	for	quickly	exploiting	short	windows	of	opportunity
Sequential	testing
In	traditional	testing	("fixed	horizon"),	we	can't	keep	looking	at	the	data	as	it
comes	in	and	then	quit	when	we're	successful,	because	we	will	inflate	our	false
positive	rate
Benjamin	and	Hochberg	(1995)	–	approach	to	controlling	false	discovery	rate
for	sequential	measurements
Likelihood	ratio	test	that	converges	to	the	"true"	false	discovery	rate	over
time
This	is	what	the	 	stats	engine	is	built	onOptimizely
Not	actually	testing
We	don't	always	need	to	A/B	test
Testing	requires	engineering	and	data	science	resources
Potential	upside	(e.g.	in	terms	of	saved	future	effort	or	mitigation	of
risk)	has	to	outweight	the	cost	of	developing,	performing,	and
analyzing	the	test

More Related Content

What's hot

Building Machine Learning Algorithms on Apache Spark with William Benton
Building Machine Learning Algorithms on Apache Spark with William BentonBuilding Machine Learning Algorithms on Apache Spark with William Benton
Building Machine Learning Algorithms on Apache Spark with William BentonSpark Summit
 
The Ring programming language version 1.3 book - Part 59 of 88
The Ring programming language version 1.3 book - Part 59 of 88The Ring programming language version 1.3 book - Part 59 of 88
The Ring programming language version 1.3 book - Part 59 of 88Mahmoud Samir Fayed
 
Super TypeScript II Turbo - FP Remix (NG Conf 2017)
Super TypeScript II Turbo - FP Remix (NG Conf 2017)Super TypeScript II Turbo - FP Remix (NG Conf 2017)
Super TypeScript II Turbo - FP Remix (NG Conf 2017)Sean May
 
Watch out: Observables are here to stay
Watch out: Observables are here to stayWatch out: Observables are here to stay
Watch out: Observables are here to stayGuilherme Ventura
 
The Ring programming language version 1.5.2 book - Part 74 of 181
The Ring programming language version 1.5.2 book - Part 74 of 181The Ring programming language version 1.5.2 book - Part 74 of 181
The Ring programming language version 1.5.2 book - Part 74 of 181Mahmoud Samir Fayed
 

What's hot (7)

eviewsOLSMLE
eviewsOLSMLEeviewsOLSMLE
eviewsOLSMLE
 
Building Machine Learning Algorithms on Apache Spark with William Benton
Building Machine Learning Algorithms on Apache Spark with William BentonBuilding Machine Learning Algorithms on Apache Spark with William Benton
Building Machine Learning Algorithms on Apache Spark with William Benton
 
C++ TUTORIAL 7
C++ TUTORIAL 7C++ TUTORIAL 7
C++ TUTORIAL 7
 
The Ring programming language version 1.3 book - Part 59 of 88
The Ring programming language version 1.3 book - Part 59 of 88The Ring programming language version 1.3 book - Part 59 of 88
The Ring programming language version 1.3 book - Part 59 of 88
 
Super TypeScript II Turbo - FP Remix (NG Conf 2017)
Super TypeScript II Turbo - FP Remix (NG Conf 2017)Super TypeScript II Turbo - FP Remix (NG Conf 2017)
Super TypeScript II Turbo - FP Remix (NG Conf 2017)
 
Watch out: Observables are here to stay
Watch out: Observables are here to stayWatch out: Observables are here to stay
Watch out: Observables are here to stay
 
The Ring programming language version 1.5.2 book - Part 74 of 181
The Ring programming language version 1.5.2 book - Part 74 of 181The Ring programming language version 1.5.2 book - Part 74 of 181
The Ring programming language version 1.5.2 book - Part 74 of 181
 

Viewers also liked

LCBC Brochure[1]
LCBC Brochure[1]LCBC Brochure[1]
LCBC Brochure[1]Jane Graham
 
Google maps sol y kary
Google maps sol y karyGoogle maps sol y kary
Google maps sol y karySol64
 
Vance Loiselle TU Automotive Keynote
Vance Loiselle TU Automotive KeynoteVance Loiselle TU Automotive Keynote
Vance Loiselle TU Automotive KeynoteTrueMotion
 
3D printing
3D printing3D printing
3D printingnoel_cwk
 
CV - John Gravenell2016
CV - John Gravenell2016CV - John Gravenell2016
CV - John Gravenell2016john gravenell
 
Earth Day 1990 K-6 Curriculum
Earth Day 1990 K-6 CurriculumEarth Day 1990 K-6 Curriculum
Earth Day 1990 K-6 CurriculumAbby Ruskey
 
Backup & Disaster Recovery for Business Owners & Directors
Backup & Disaster Recovery for Business Owners & DirectorsBackup & Disaster Recovery for Business Owners & Directors
Backup & Disaster Recovery for Business Owners & DirectorsLucy Denver
 
Final Paper Com 300
Final Paper Com 300Final Paper Com 300
Final Paper Com 300William Beer
 
Facebook policy primer keecherer 16445493
Facebook policy primer keecherer 16445493Facebook policy primer keecherer 16445493
Facebook policy primer keecherer 16445493Theresa Keecherer
 
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)ShopCamp
 
KCH14-0566 Grey Poupon Program Guide_Layout_r7
KCH14-0566 Grey Poupon Program Guide_Layout_r7KCH14-0566 Grey Poupon Program Guide_Layout_r7
KCH14-0566 Grey Poupon Program Guide_Layout_r7Barb Pritikin
 
The Art of Body Language | Public Speaking
The Art of Body Language | Public SpeakingThe Art of Body Language | Public Speaking
The Art of Body Language | Public SpeakingFais PPT
 
Hotel "El Abuelo"
Hotel "El Abuelo"Hotel "El Abuelo"
Hotel "El Abuelo"Sol64
 
Reading Street
Reading StreetReading Street
Reading Streetcavalcic
 
High class media multi media kit
High class media multi media kitHigh class media multi media kit
High class media multi media kitHighClassMedia
 

Viewers also liked (19)

Bourdieu la esencia del neoliberalismo
Bourdieu   la esencia del neoliberalismoBourdieu   la esencia del neoliberalismo
Bourdieu la esencia del neoliberalismo
 
LCBC Brochure[1]
LCBC Brochure[1]LCBC Brochure[1]
LCBC Brochure[1]
 
Google maps sol y kary
Google maps sol y karyGoogle maps sol y kary
Google maps sol y kary
 
Vance Loiselle TU Automotive Keynote
Vance Loiselle TU Automotive KeynoteVance Loiselle TU Automotive Keynote
Vance Loiselle TU Automotive Keynote
 
3D printing
3D printing3D printing
3D printing
 
CV - John Gravenell2016
CV - John Gravenell2016CV - John Gravenell2016
CV - John Gravenell2016
 
Earth Day 1990 K-6 Curriculum
Earth Day 1990 K-6 CurriculumEarth Day 1990 K-6 Curriculum
Earth Day 1990 K-6 Curriculum
 
Backup & Disaster Recovery for Business Owners & Directors
Backup & Disaster Recovery for Business Owners & DirectorsBackup & Disaster Recovery for Business Owners & Directors
Backup & Disaster Recovery for Business Owners & Directors
 
Final Paper Com 300
Final Paper Com 300Final Paper Com 300
Final Paper Com 300
 
Facebook policy primer keecherer 16445493
Facebook policy primer keecherer 16445493Facebook policy primer keecherer 16445493
Facebook policy primer keecherer 16445493
 
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)
Ondřej Tomek - Jak přemýšlí investoři (ShopCamp 2015)
 
Com Theory Final
Com Theory FinalCom Theory Final
Com Theory Final
 
KCH14-0566 Grey Poupon Program Guide_Layout_r7
KCH14-0566 Grey Poupon Program Guide_Layout_r7KCH14-0566 Grey Poupon Program Guide_Layout_r7
KCH14-0566 Grey Poupon Program Guide_Layout_r7
 
The Art of Body Language | Public Speaking
The Art of Body Language | Public SpeakingThe Art of Body Language | Public Speaking
The Art of Body Language | Public Speaking
 
Hotel "El Abuelo"
Hotel "El Abuelo"Hotel "El Abuelo"
Hotel "El Abuelo"
 
Hola
HolaHola
Hola
 
Reading Street
Reading StreetReading Street
Reading Street
 
High class media multi media kit
High class media multi media kitHigh class media multi media kit
High class media multi media kit
 
Prezentácia martin
Prezentácia martinPrezentácia martin
Prezentácia martin
 

Similar to A/B Testing Theory and Practice (TrueMotion Data Science Lunch Seminar)

Chapter 3 SE 2015.pptx
Chapter 3 SE 2015.pptxChapter 3 SE 2015.pptx
Chapter 3 SE 2015.pptxmiki304759
 
Introduction to mathematical Induction.ppt
Introduction to mathematical Induction.pptIntroduction to mathematical Induction.ppt
Introduction to mathematical Induction.pptShaukatAliChaudhry1
 
Discrete probability
Discrete probabilityDiscrete probability
Discrete probabilityRanjan Kumar
 
STAB52 Lecture Notes (Week 2)
STAB52 Lecture Notes (Week 2)STAB52 Lecture Notes (Week 2)
STAB52 Lecture Notes (Week 2)Danny Cao
 
Reliability-Engineering.pdf
Reliability-Engineering.pdfReliability-Engineering.pdf
Reliability-Engineering.pdfBakiyalakshmiR1
 
Talk at CIRM on Poisson equation and debiasing techniques
Talk at CIRM on Poisson equation and debiasing techniquesTalk at CIRM on Poisson equation and debiasing techniques
Talk at CIRM on Poisson equation and debiasing techniquesPierre Jacob
 
Introduction to probability solutions manual
Introduction to probability   solutions manualIntroduction to probability   solutions manual
Introduction to probability solutions manualKibria Prangon
 
17-mathematical-induction.ppt
17-mathematical-induction.ppt17-mathematical-induction.ppt
17-mathematical-induction.pptRishabhNath3
 
17-mathematical-induction.ppt
17-mathematical-induction.ppt17-mathematical-induction.ppt
17-mathematical-induction.pptSintaVeDe
 

Similar to A/B Testing Theory and Practice (TrueMotion Data Science Lunch Seminar) (20)

Chapter 3 SE 2015.pptx
Chapter 3 SE 2015.pptxChapter 3 SE 2015.pptx
Chapter 3 SE 2015.pptx
 
Testing
TestingTesting
Testing
 
Unit II PPT.pptx
Unit II PPT.pptxUnit II PPT.pptx
Unit II PPT.pptx
 
Introduction to mathematical Induction.ppt
Introduction to mathematical Induction.pptIntroduction to mathematical Induction.ppt
Introduction to mathematical Induction.ppt
 
Induction (1).ppt
Induction (1).pptInduction (1).ppt
Induction (1).ppt
 
ch3.ppt
ch3.pptch3.ppt
ch3.ppt
 
Discrete probability
Discrete probabilityDiscrete probability
Discrete probability
 
STAB52 Lecture Notes (Week 2)
STAB52 Lecture Notes (Week 2)STAB52 Lecture Notes (Week 2)
STAB52 Lecture Notes (Week 2)
 
6e-ch4.ppt
6e-ch4.ppt6e-ch4.ppt
6e-ch4.ppt
 
Reliability-Engineering.pdf
Reliability-Engineering.pdfReliability-Engineering.pdf
Reliability-Engineering.pdf
 
Mathematical Induction DM
Mathematical Induction DMMathematical Induction DM
Mathematical Induction DM
 
b
bb
b
 
Talk at CIRM on Poisson equation and debiasing techniques
Talk at CIRM on Poisson equation and debiasing techniquesTalk at CIRM on Poisson equation and debiasing techniques
Talk at CIRM on Poisson equation and debiasing techniques
 
Stats chapter 8
Stats chapter 8Stats chapter 8
Stats chapter 8
 
Stats chapter 8
Stats chapter 8Stats chapter 8
Stats chapter 8
 
Introduction to probability solutions manual
Introduction to probability   solutions manualIntroduction to probability   solutions manual
Introduction to probability solutions manual
 
PTSP PPT.pdf
PTSP PPT.pdfPTSP PPT.pdf
PTSP PPT.pdf
 
chap2.pdf
chap2.pdfchap2.pdf
chap2.pdf
 
17-mathematical-induction.ppt
17-mathematical-induction.ppt17-mathematical-induction.ppt
17-mathematical-induction.ppt
 
17-mathematical-induction.ppt
17-mathematical-induction.ppt17-mathematical-induction.ppt
17-mathematical-induction.ppt
 

Recently uploaded

Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023ymrp368
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 

Recently uploaded (20)

Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 

A/B Testing Theory and Practice (TrueMotion Data Science Lunch Seminar)