R/print.inflmlm.R

print.inflmlm <-
function(x, digits = max(3, getOption("digits") - 4), FUN=det, ...) {
	df <- as.data.frame(x, FUN=FUN)
	cat("Multivariate influence statistics for model:\n", 
	 paste(deparse(x$call), sep = "\n", collapse = "\n"), 
	 "\n m=", x$m, "case deletion diagnostics",
	 ifelse(x$m>1, paste(", using", deparse(substitute(FUN)), "for matrix values\n\n"), "\n"))
	print(df, digits=digits, ...)
	invisible(x)
}

Try the mvinfluence package in your browser

Any scripts or data that you put into this service are public.

mvinfluence documentation built on May 2, 2019, 4:58 p.m.