Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Statistical Thinking for Data Science
Search
Chris Fonnesbeck
February 08, 2015
Science
5
1.1k
Statistical Thinking for Data Science
PyTennessee 2015 Keynote Address
Chris Fonnesbeck
February 08, 2015
Tweet
Share
More Decks by Chris Fonnesbeck
See All by Chris Fonnesbeck
Structured Decision-making and Adaptive Management For The Control Of Infectious Disease
fonnesbeck
3
110
Estimating Microbial Diversity
fonnesbeck
0
120
Bayesian Statistical Analysis: A Gentle Introduction
fonnesbeck
4
620
Other Decks in Science
See All in Science
SpatialBiologyWestCoastUS2024
lcolladotor
0
110
眼科AIコンテスト2024_特別賞_6位Solution
pon0matsu
0
330
Explanatory material
yuki1986
0
160
02_西村訓弘_プログラムディレクター_人口減少を機にひらく未来社会.pdf
sip3ristex
0
300
システム数理と応用分野の未来を切り拓くロードマップ・エンターテインメント(スポーツ)への応用 / Applied mathematics for sports entertainment
konakalab
1
260
Factorized Diffusion: Perceptual Illusions by Noise Decomposition
tomoaki0705
0
370
Valuable Lessons Learned on Kaggle’s ARC AGI LLM Challenge (PyDataGlobal 2024)
ianozsvald
0
280
理論計算機科学における 数学の応用: 擬似ランダムネス
nobushimi
1
420
応用心理学Ⅰテキストマイニング講義資料講義編(2024年度)
satocos135
0
130
点群ライブラリPDALをGoogleColabにて実行する方法の紹介
kentaitakura
1
150
How were Quaternion discovered
kinakomoti321
2
1.2k
ほたるのひかり/RayTracingCamp10
kugimasa
1
600
Featured
See All Featured
Code Reviewing Like a Champion
maltzj
522
40k
GraphQLとの向き合い方2022年版
quramy
46
14k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
30
2.3k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
How to Ace a Technical Interview
jacobian
276
23k
Testing 201, or: Great Expectations
jmmastey
42
7.5k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
For a Future-Friendly Web
brad_frost
176
9.7k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
47
2.7k
Making the Leap to Tech Lead
cromwellryan
133
9.2k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
21k
KATA
mclloyd
29
14k
Transcript
Statistical Thinking for Data Science Chris Fonnesbeck Vanderbilt University
None
None
21/22 falling 7+ stories survived
2 fell together
40% at night
“Even more surprising, the longer the fall, the greater the
chance of survival.”
2 to 32 stories (average = 5.5)
?
"... 132 such victims were admitted to the Animal Medical
Center on 62nd Street in Manhattan ..."
"Found" Data
convenience sample
Missing Data
Representative
Statistical Issues
Big Data
“With enough data, the numbers speak for themselves ” Chris
Anderson, Wired
Alfred Landon
Literary Digest Straw Poll
"Next week, the first answers from these ten million will
begin the incoming tide of marked ballots, to be triple-checked, verified, five-times cross-classified and totalled."
2.4 million returns
41 - 55
None
George Gallup
Sampled 50,000
66%
Random Sampling
None
Bias
None
None
Self-selection Bias
None
For some estimate of unknown quantity ,
p = 0.5 sample_sizes = [10, 100, 1000, 10000, 100000]
replicates = 1000 biases = [] for n in sample_sizes: bias = np.empty(replicates) for i in range(replicates): true_sample = np.random.normal(size=n) negative_values = true_sample<0 missing = np.random.binomial(1, p, n).astype(bool) observed_sample = true_sample[~(negative_values & missing)] bias[i] = observed_sample.mean() biases.append(bias)
None
Accuracy Mean Squared Error
“The numbers have no way of speaking for themselves” Nate
Silver
White House Big Data Partners Workshop
White House Big Data Partners Workshop 19 Participants 0 Statisticians
NSF Working Group on Big Data
NSF Working Group on Big Data 100 experts convened 0
statisticians
Moore Foundation Data Science Environments
Moore Foundation Data Science Environments 0 directors with statistical expertise
NIH BD2K Executive Committee
NIH BD2K Executive Committee 17 committee members 0 statisticians
Feeling left out?
It's our own fault
“Almost everything you learned in your college statistics course was
wrong”
Typical introductory statistics syllabus 1.Descriptive statistics and plotting
Typical introductory statistics syllabus 1.Descriptive statistics and plotting 2.Basic probability
Typical introductory statistics syllabus 1.Descriptive statistics and plotting 2.Basic probability
3.Hypothesis testing
Typical introductory statistics syllabus 1.Descriptive statistics and plotting 2.Basic probability
3.Hypothesis testing 4.Experimental design
Typical introductory statistics syllabus 1.Descriptive statistics and plotting 2.Basic probability
3.Hypothesis testing 4.Experimental design 5.ANOVA
Statistical Hypothesis Testing
None
None
Test Statistic
T-statistic
None
None
None
p-value
None
None
false positive rate
"The value for which , or 1 in 20, is
1.96 or nearly 2; it is convenient to take this point as a limit in judging whether a deviation ought to be considered significant or not." R.A. Fisher
p-value
the probability that the observed differences are due to chance
the probability that the observed differences are due to chance
a measure of the reliability of the result
a measure of the reliability of the result
the probability that the null hypothesis is true
the probability that the null hypothesis is true
"If an experiment were repeated infinitely, p represents the proportion
of values more extreme than the observed value, given that the null hypothesis is true."
H0 : Mean duckling body mass did not differ among
years.
H0 : Mean duckling body mass did not differ among
years.
H0 : The prevalence of autism spectrum disorder for males
and females were equal.
H0 : The prevalence of autism spectrum disorder for males
and females were equal.
H0 : The density of large trees in logged and
unlogged forest stands were equal
H0 : The density of large trees in logged and
unlogged forest stands were equal
Statistical Straw Man
Statistical hypotheses are not interesting
Hypothesis tests are not decision support tools
Multiple Comparisons
None
Family-wise Error Rate >>> 1. - (1. - 0.05) **
20 0.6415140775914581
import seaborn as sb import pandas as pd n =
20 r = 36 df = pd.concat([pd.DataFrame({'y':np.random.normal(size=n), 'x':np.random.random(n), 'replicate':[i]*n}) for i in range(r)]) sb.lmplot('x', 'y', df, col='replicate', col_wrap=6)
None
Statistically Significant!
None
"Despite a large statistical literature for multiple testing corrections, usually
it is impossible to decipher how much data dredging by the reporting authors or other research teams has preceded a reported research finding."
What's the Alternative?
Build models and use them to estimate things we care
about
Effect size estimation
Data-generating Model
None
None
Florida manatee Trichechus manatus
None
None
None
occupied?
occupied? available?
occupied? available? seen?
None
Estimating visibility
None
None
None
None
None
None
None
Bayesian Statistics
None
None
Bayes' Formula
Probabilistic Modeling
Evidence-based Medicine
ASD Interventions Research 19 independent studies 27 different interventions
None
None
None
None
None
None
None
None
None
None
None
“While everyone is looking at the polls and the storm,
Romney’s slipping into the presidency. ”
None
Heirarchical modeling
Pollster effects
None
None
None
None
Data Science
Data
Science
Those who ignore statistics are condemned to re-invent it. --
Brad Efron