Assignment 07
Cross-Validation
Instructions
Submit a printed document of your responses to the following questions. Please adhere to the following guidelines for further formatting your assignment:
- All plots should be resized so that they do not take up more room than necessary.
- All figures and tables should have a name (e.g., Figure 1) and an appropriate caption.
In questions that ask you to “use matrix algebra” to solve the problem, you can either show your syntax and output from carrying out the matrix operations, or you can use Equation Editor to input the matrices involved in your calculations.
This assignment is worth 20 points.
Part I: Minneapolis Violent Crime
For the first part of this assignment, you will use the data provided in the file mpls-violent-crime.csv to build a model that examines the trend in violent crime rate over time.
Preparation
Create a variable that indicates the number of years since 2000. Use this variable in all analyses for Part I rather than the year
variable.
Description
Create a scatterplot showing the violent crime rate as a function of time.
Based on the plot, describe the trend in violent crime rate over time.
If you were going to fit a polynomial model to these data, what degree polynomial would you fit? Explain.
Use p-Value methods for Model Selection
Fit a series of polynomial models starting with a linear model, and then models that also include higher order polynomials that allow you to evaluate your response to Question #3. Be sure to fit models up to degree \(k+1\), where \(k\) is the degree you hypothesized in Question #3. Analyze each of the polynomial terms (including the linear term) by using a series of nested F-tests. Report these results in an ANOVA table. (Note: If you need a refresher on fitting polynomial models and carrying out a nested F-test, see the Polynomial Regression notes from EPsy 8252.) (2pts.)
Based on these results, which polynomial model would you adopt? Explain.
Using LOOCV for Model Selection
In this section of the assignment, you are going to use LOOCV to evaluate the MSE for the same set of polynomial models you evaluated in Question #4.
Write and include syntax that will carry out the LOOCV.
Report the cross-validated MSE for each of the models in your set of polynomial models.
Based on these results, which degree polynomial model should be adopted? Explain.
Part II: Course Evaluations
For the second part of this assignment, you will use the data provided in the file evaluations.csv to build a model that predicts variation in course evaluation scores.
Preparation
Begin by fitting a model that predicts average course evaluation score using the following predictors: beauty, number of courses for which the professor has evaluations, whether the professor is a native English speaker, and whether the professor is female.
Description
Using average course evaluation scores (y), compute the total sum of squares (SST). Show your work.
Using average course evaluation scores (y) and the predicted values from the model (\(\hat{y}\)), compute the sum of squared errors (SSE). Show your work.
Compute the model \(R^2\) value using the formula: \(1 - \frac{\mathrm{SSE}}{\mathrm{SST}}\).
Using k-Fold Cross-Validation to Estimate \(R^2\)
As we know, the estimate for \(R^2\) is biased. We can obtain a better estimate of \(R^2\) by using cross-validation. You will use 5-fold cross-validation to estimate the \(R^2\) value. The algorithm for this will be:
- Randomly divide the evaluations data into 5 folds.
- Hold out 1 fold as your validation data and use the remaining 4 folds as your training data.
- Fit the model to the training data.
- Use the estimated coefficients from those fits to compute \(\hat{y}\) values using the validation data.
- Compute the SST and SSE values for the validation data, and use those to compute \(R^2\) based on the formula \(1 - \frac{\mathrm{SSE}}{\mathrm{SST}}\). (Note that sometimes the \(R^2\) may be negative when we compte it in this manner.)
- Repeat for each fold.
- Compute the cross-validated \(R^2\) by finding the mean of the five \(R^2\) from the cross-validations.
Write and include syntax that will carry out the 5-fold cross-validation. In this syntax use
set.seed(1000)
so that you and the answer key will get the same results. (This website may be useful in using the purrr package to obtain the y- and \(\hat{y}\)-values in order to compute the SST and SSE values: https://drsimonj.svbtle.com/k-fold-cross-validation-with-modelr-and-broom)Report the five \(R^2\) values from your analysis and the cross-validated \(R^2\) value.
How does this value compare to the \(R^2\) value you computed in Question #11, based on the data.
Explain why the cross-validated estimate of \(R^2\) is a better estimate than the data-based \(R^2\).
Part III: Credit Balance
For the third part of this assignment, you will again use the file the data provided in the file credit.csv to build a model that predicts customers’ credit card balance. Do not forget to standardize all the variables.
Use the
lm.ridge()
function to fit the same sequence of \(\lambda\) values you used in Question #7 from Assignment 6. Runningselect()
on this output, provides \(\lambda\) values based on different criteria. Report the \(\lambda\) value associated with the generalized cross-validation (GCV) metric.Re-do Question #7 from Assignment 6, except this time, select the optimal \(\lambda\) value based on using the AICc. How does this compare to the \(\lambda\) value you found using the GCV metric from the previous question? (Show your syntax.)
Compute the coefficients, standard errors based on the ridge regression model based on the \(\lambda\) value you identified in Question #17. Also compute the t-values, and p-values for each coefficient. Report all of these in a coefficient table. (2pts.)