

Intro to Statistical Learning
Grayson White
Stat 243
Week 1 | Fall 2026
Today:
Wednesday:
…and after that I’ll have each of you introduce yourselves 😄
Name: Grayson White (he/him), you can call me ‘Grayson’
Email: gwhite@reed.edu
Office: Library 386
Office hours: TBD, please fill out the office hours survey ASAP for your availability to be considered.



Would love to hear: your name, pronouns, major, what you’re excited about in this class, and a fun fact!
This course will:
Cover important modeling and predictive techniques (e.g., regression, classification, clustering, tree-based methods, neural networks)
Practice each method in R using real/simulated data
See syllabus for more detailed learning outcomes

The course website, stat-243-f26.github.io, will be the central location for all our course materials.
We’ll also use some other technologies and resources for collaboration, dissemination, and communication.
Reed’s RStudio Server or a local installation of RStudio, for completing coursework,
A course-wide Slack workspace, for course communication,
Gradescope, for turning in assignments and exams, and
Our course GitHub organization, for collaboration, portfolio-building, and dissemination of work.
A bank wants to model the probability customers default on a loan
Common Considerations:
Customer age
Marital status
Income
Q: What other factors might a bank consider?
Q: How might each factor relate to probability of default?
Q: What ethical problems might be present?
Let:
Stat Learning: the study of the relationships between predictors (\(X_1, \dots , X_p\)) and a response (\(Y\))
We usually assume there is a relationship between predictors and response:
\[ Y = \underbrace{f(X_1, \dots, X_p)}_{\text{function of predictors}} + \underbrace{\epsilon}_{\text{"error"}} \]
where \(\epsilon\) (“epsilon”) is a random error (more on this later!)
Example: Linear regression!
\[\text{Default Prob} = \beta_0 + \beta_1\text{(Age)}+\beta_2\text{(Married)} + \beta_3\text{(Income)} + \epsilon\]
The goal of stat learning is to estimate \(f\), given data on \(X\) and \(Y\).
It’s helpful to distinguish different types of statistical learning.
On the next 4 slides, I’ll contrast the following 4 pairs of terms:
Prediction vs. Inference Tasks
Parametric vs. Non-Parametric Methods
Supervised vs. Unsupervised Learning
Regression vs. Classification Problems
Prediction
Inference
Parametric Methods
Make assumptions about form of \(f\) using parameters
Example: Linear regression \[f(X) = \beta_0 + \beta_1X_1+\dots+\beta_pX_p\] where \(\beta_0,\beta_1,\dots,\beta_p\) are parameters
Non-Parametric Methods
Forgo assumptions on the shape of \(f\)
Examples: Neural networks, “nearest neighbor” algorithms
Problems: Require much more data, uninterpretable, not generalizable (more on this later!)
Supervised Learning
Models with response variable (and predictors!)
Example: Predicting default risk using age
Unsupervised Learning
Models with no response variables
Cluster or detect pattern among observations
Example: Create “social groups” among bank customers using age and income (such as “wealthy Millenials”, “low-income retirees”, etc.)
Regression Problems
Models with quantitative response variables
Example: Model probability of wildfire by temperature
Classification Problems
Models with qualitative response variables or outputs
Example: Predict if there will/won’t be a wildfire by temperature
Lecture: Mondays and Wednesdays
Complete a reading before each “lecture” from one of our textbooks, An Introduction to Statistical Learning in R (ISLR), or Beyond Multiple Linear Regression (BMLR).
Occasionally, I might assign a blog post or reading from a different (free, online) textbook.
Our textbooks are free online! See the syllabus!
Lab: Fridays
Practice course content, work on assignments, and take short quizzes on past material.
Mix of pen-and-paper work, coding activities.
Typical Friday workflow: start with a brief quiz on last week’s material, then transition to practice of current content.
You will need access to a laptop for this course.
Bring a laptop to class every day
Please let me know ASAP if you do not have access to a personal laptop!
We will regularly use the R programming language
All assignments will be completed in RStudio
RStudio can be downloaded to your computer (see syllabus) or accessed on the Reed RStudio Server: https://rstudio.reed.edu/
We expect everyone in this class to strive to foster a learning environment that is equitable, inclusive, and welcoming. If you experience any barriers to learning, please come to Professor Grayson White or a college administrator with your concerns.
Code of Conduct:
We expect all members of Stat 243 to make participation a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
We expect everyone to act and interact in ways that contribute to an open, welcoming, inclusive, and healthy community of learners. You can contribute to a positive learning environment by demonstrating empathy and kindness, being respectful of differing viewpoints and experiences, and giving and gracefully accepting constructive feedback.1
01:00

Artificial intelligence (AI) tools, such as ChatGPT, Claude, Co-Pilot, Gemini, and others are being used to generate code, analyze data, write, and much more (and they are getting quite good at many of these tasks!). However, learning to think critically about a problem at hand, and engaging with your peers, tutors, and instructors when not understanding a concept or question are integral components of a liberal arts education and goals of this course. Therefore,
For all course content: The use of generative AI tools, such as ChatGPT and others, are strictly prohibited in any stage of the work process for this course.
01:00
My goal: Make you an excellent statistician / data scientist / machine learning guru / … with a great deal of personal understanding of the material so that you can…
About the syllabus, AI, the course, etc.?