I am running a linear regression model, using stepwise selection procedure and would like to get the confidence intervals in the summary table. How can i do this ? The purpose is to be able to use xtable
to use the output in Latex
step.model <- stepAIC(full.model,direction = "both",trace = FALSE)
summary(step.model)
How can this be done ?