I am checking assumptions(multivariate normality) of multiple linear regression in R. I have 100 independent variables and want to check their normality.
Should i need to check one by one for all 100 variables? Or should we just assume there is a normality and proceed with the regression? Or is there any way from which I can check the normality of all 100 variables in a single piece of code in R?
Also is there any way the linearity of all these 100 IVs can be checked with the DV?
qqnorm(resid(mod)) ; qqline(resid(mod)), wheremodholds the results of yourlmcall ] – user20650 Dec 11 '15 at 22:00?shapiro.test), although most statisticians don't recommend this. – Ben Bolker Dec 11 '15 at 22:41