Session Ready
Exercise

Linear Regression

Construct a linear regression predicting air speed by departure delay, for air speeds between \(50\) and \(800\). Once you have computed the model, be sure to summarize it in order to get inference results.

Instructions
100 XP

Use rxLinMod to construct the regression: The syntax is: rxLinMod(formula, data, rowSelection)

  • formula - a two-sided formula that specifies the variable you want to predict on the left side, and the predictor variable(s) on the right side.
  • data - The dataset in which you want to search for the variables in the formula.
  • rowSelection - a logical expression that will be used to select particular rows for analysis. Rows in which the expression is *

Remember to use summary() to return your analysis results.