Convert an inflmlm object to a data frame
Source:R/as.data.frame.inflmlm.R
as.data.frame.inflmlm.Rd
This 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
inflmlm
object, as returned bymlm.influence
- ...
ignored
- FUN
in the case where the subset size,
m>1
, the function used on theH, Q, L, R
to calculate a single statistic. The default isdet
. An alternative istr
, for matrix trace.- funnames
logical. Should the
FUN
name be prepended to the statistics when creating a data frame?