AVPs {s20x} | R Documentation |
Plots the added variable plot for each variable used in fitting the linear model, lmfit.
AVPs(lmfit, nrow=2, ncol=2)
lmfit |
an lm object, i.e. the output from "lm()". |
nrow |
number of rows of plots per page. |
ncol |
number of columns of plots per page. |
Returns the plots.
"pairs.20x"
# Peruvian Indians data data(peru) attach(peru) fit<-lm(BP~ age+ years+ weight+ height) AVPs(fit)