
Convert an inflmlm object to a data frame
Source:R/as.data.frame.inflmlm.R
as.data.frame.inflmlm.RdThis function is used internally in the package to convert the result of mlm.influence() to a data frame.
It is not normally called by the user.
Usage
# S3 method for inflmlm
as.data.frame(x, ..., FUN = det, funnames = TRUE)Arguments
- x
An
inflmlmobject, as returned bymlm.influence- ...
ignored
- FUN
in the case where the subset size,
m>1, the function used on theH, Q, L, Rto calculate a single statistic. The default isdet. An alternative istr, for matrix trace.- funnames
logical. Should the
FUNname be prepended to the statistics when creating a data frame?