For the modeling process, we will use the following steps:
- Extract the components and determine the number to retain
- Rotate the retained components
- Interpret the rotated solution
- Create scores from the non-rotated components
- Use the scores as input variables for regression analysis with MARS and evaluate the performance on the test data
There are many different ways and packages used to conduct PCA in R, including what seems to be the most commonly used prcomp() and princomp() functions in base R. However, for my money, it seems that the psych package is the most flexible with the best options.