powered by
Print the check of lm object
# S3 method for check.lm print(x, which.infl = c("influential", "all"), ...)
prints the check.lm object.
check.lm
an object used to select a method.
Indicate whether only influential cases (influential, the default) or all cases (all) should be printed.
influential
all
further arguments passed to or from other methods (none are used).
Mathijs Deen
lm.1 <- lm(mpg ~ disp + wt, data = mtcars) chk.lm.1 <- check(lm.1) print(chk.lm.1, which.infl="all")
Run the code above in your browser using DataLab