Using the following linear regression model workflow, I was able to generate a model that was robust to LOOCV. Because of posts such as this, I know that feature selection should be done inside the LOOCV. I did feature selection outside of my LOO loop, but did it in a LOO fashion, and only used the method to remove features. I was wondering if my method suffers from the same form of bias that is highlighted in posts such as the one linked.
Remove one case
Perform feature selection
Repeat steps 1) and 2) until all cases have been iterated through
Identify features that were selected in ALL iterations of 3)
Perform LOOCV using just the features identified from step 4)