I am looking for a variable selection technique in R to reduce the number of my regression predictors, where I can force the method to keep a specific variable within the model. Here is a toy example from the R help of ?step, the variable "Examination" will be removed:
summary(lm1 <- lm(Fertility ~ ., data = swiss));
slm1 <- step(lm1);
summary(slm1);