I've seen several questions here about the assumptions of lasso regression, but it's not really what I'm looking for, so here it goes.
I'm using the LASSO technique for multiple linear regression, specifically with glmnet() and the "Hitters" data set in R. What I would like to do is confirm that the model I am getting out is still adhering to the necessary assumptions of linear modeling.
I saw another post on another site indicating that I should create an lm() object using the coefficients that "survive" the LASSO, but I'm not sure that's right.
So: How can I check the assumptions of linear regression when using the LASSO technique?