-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathC0-Intro2StatLearn-PD_AS.qmd
More file actions
138 lines (82 loc) · 6.83 KB
/
C0-Intro2StatLearn-PD_AS.qmd
File metadata and controls
138 lines (82 loc) · 6.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
---
title: "Statistical Learning"
subtitle: "Chapter 0. Introduction"
author: "Pedro Delicado and Alex Sanchez"
institute: "Universitat Politécnica de Catalunya and Universitat de Barcelona"
format:
beamer:
aspectratio: 43
navigation: horizontal
theme: Madrid
colortheme: sidebartab
incremental: false
slide-level: 2
section-titles: false
css: "css4CU.css"
bibliography: "StatisticalLearning.bib"
---
## Statistics and Machine Learning. The two Cultures
- Statistics is the science of collecting, analyzing, interpreting, and presenting data to extract meaningful insights, quantify uncertainty, and support decision-making under uncertainty (Efron and Hastie 2016).
- We define Machine Learning as a set of methods that can automatically detect patterns in data, and then use the uncovered patterns to predict future data (Murphy 2012).
- While Statistics and Machine Learning have many elements in common they are considered to have appeared (more or less) independently.
- Leo Breiman wrote [a famous paper](https://projecteuclid.org/journals/statistical-science/volume-16/issue-3/Statistical-Modeling--The-Two-Cultures-with-comments-and-a/10.1214/ss/1009213726.full) about it @Breiman2001.
## Statistical Learning
- Statistical Learning refers to a framework for understanding and modeling complex datasets by using statistical methods to estimate relationships between variables, make predictions, and assess the reliability of conclusions.
- It bridges traditional statistics and machine learning by incorporating model interpretability, regularization techniques, and a focus on uncertainty quantification.
- It became popular after the 1st edition of @Hastie2009.
## Data Science
:::::: columns
:::: {.column width="40%"}
::: font70
- Data Science: an interdisciplinary field combining techniques from statistics, machine learning, computer science, and domain-specific knowledge to extract insights and value from data.
:::
::::
::: {.column width="60%"}
```{r}
knitr::include_graphics("images/clipboard-1391905995.png")
```
:::
::::::
## Statistics, ML. Statistical Learning and Data Science
- Statistics provides the theoretical foundation for analyzing data, quantifying uncertainty, and drawing valid inferences. It ensures the rigor and interpretability of results.
- Machine Learning contributes computational and algorithmic tools that enable automated pattern detection and predictive modeling, often with a focus on scalability and performance.
- Statistical Learning serves as the bridge between statistics and machine learning, emphasizing interpretable models, regularization techniques, and uncertainty quantification.
- Data Science integrates all these components while also incorporating data engineering, visualization, and domain expertise to address real-world data-driven problems.
## Different focus of Statistics and Machine Learning (1)
- Much of statistical technique was originally developed in an environment where data were scarce and difficult or expensive to collect, so statisticians focused on creating methods that would maximize the strength of inference one is able to make, given the least amount of data @BauKapHor:2017.
- Much of the development of statistical theory was to find mathematical approximations for things that we couldn't yet compute @BauKapHor:2017.
- Mathematics was the best computer @Hastie2016.
## Different focus of Statistics and Machine Learning (2)
- From the 1950s to the present is the "computer age" of Statistics, the time when computation, the traditional bottleneck of statistical applications, became faster and easier by a factor of a million @Hastie2016.
- ML as well as SL and DS found in this increase in computation capabilities the perfect field to develop and strengthen algorithmic approaches to problem solving that were nhard to model or solve analytically.

<!-- - The center of the field [Statistics] has in fact moved in the past sixty years, from its traditional home in mathematics and logic toward a more computational focus (Efron and Hastie 2016). -->
<!-- - Today, the manner in which we extract meaning from data is different in two ways, both due primarily to advances in computing: -->
<!-- - we are able to compute many more things than we could before, and; -->
<!-- - we have a lot more data than we had before. -->
<!-- (Baumer, Kaplan, and Horton 2017) -->
<!-- - Michael Jordan (UC Berkeley) has described Data Science as the marriage of computational thinking and inferential thinking. [...] These styles of thinking support each other. -->
<!-- - Data Science is a science, a rigorous discipline combining elements of Statistics and Computer Science, with roots in Mathematics. -->
## Data Science, learning and prediction
- A particularly energetic brand of the statistical enterprise has flourished in the new century, *data science*, emphasizing algorithmic thinking rather than its inferential justification.
- Similarly to ML, Data Science seems to represent a statistics discipline without parametric probability models or formal inference.
- Why have they taken center stage?
- Prediction is commercially valuable.
- Prediction is the simplest use of regression theory.
- It can be carried out successfully without probability models, perhaps with the assistance of cross-validation, permutations, bootstrap.
## Statistical Learning is (also) about _learning from data_
- In statistical learning...
- We study models and tools originally developed by statisticians (sparse estimation or nonparametric versions of linear and generalized linear models, classification and regression trees, ...)
- Many of these methods are now part of the toolkit of Machine Learning practitioners, usually coming from Computer Science, and Data Scientists in general.
- We also learn algorithms and procedures proposed by researchers in Machine Learning (neural networks, support vector machines, boosting, random forests, ...) now part of the statisticians' prediction toolkit.
- So we can also don't care much about the labels and agree that the course is about *learning from data*, and specifically focused on the prediction problem.
# Examples of Statistical Learning Problems
- Identify the risk factors for prostate cancer.
- Predict whether someone will have a heart attack on the basis of demographic, diet and clinical measurements.
- Classify a recorded phoneme based on a log-periodogram.
- Customize an email spam detection system.
- Identify the numbers in a handwritten zip code.
- Classify a tissue sample into one of several cancer classes, based on a gene expression profle.
- Establish the relationship between salary and demographic variables in population survey data.
Source _[@JamWitHasTibJon:2023](https://web.stanford.edu/~hastie/ISLR2/Slides/Ch1_Inroduction.pdf)_
## References