LINEAR MODELING IN R > MISSION 454
Introduction to Modeling
In this mission, you'll learn about the fundamentals of building models with R. We'll cover concepts, principles, and rules that will be critical not only for the remainder of this Linear Modeling in R course, but for all of your future work modeling with R.
This mission starts with the basics: what is a model? Why are models useful in data science? What kinds of questions can different sorts of models help us answer?
Then, we'll take a closer look at modeling in R and start digging into the specifics. There are two primary goals we might have for a model: predicting the future (prediction model) or understanding how different variables are affecting a result (inference model). In this course, we'll dig deeper into both types of model, the concepts that underlie them, and how we can approach building both predictive and inference models that are statistically sound.
Objectives
Mission Outline
- Introduction
- Motivation
- General Model Form
- Prediction
- Inference
- Error
- Estimating f with Parametric Models
- Residuals
- Comparing Model Predictions to Reality
- Recap
- Takeaways