Description Usage Arguments Details Value Author(s) References See Also Examples
Summarize the test statistic values and p-values for assessing unusual
observations using the global and directional test statistics that were
computed in a gvlmaDel
object resulting from a call to
deletion.gvlma
.
1 2 3 4 |
object, x |
Object resulting from a call to
|
allstats |
For |
... |
Additional arguments that are ignored. |
The summary values are the min, first quartile, median, average, 3rd quartile and maximum of the deletion test statistic values and p-values. Additionally, observations and the corresponding deletion test statistic values and p-values for which the deletion test statistic value or its p-value is outside the outer fences (Q1 - 3*IQR, Q3 + 3*IQR) of the set of deletion statistics are reported.
print.gvlmaDel
simply invokes summary.gvlmaDel
with
allstats = TRUE
.
A dataframe of dimension nobs
x 5 is returned invisibly, where
nobs
is
the number of observations in the linear model fit. The 5 columns are
named DeltaGlobalStat
, DeltaStat1
, DeltaStat2
,
DeltaStat3
, and DeltaStat4
, indicating the deletion
global test and the four deletion directional test statistics. Each
entry in the dataframe is TRUE/FALSE, indicating whether the
corresponding test statistic was unusual (i.e. beyond the outer
fences) with respect to either its value or its p-value.
Slate, EH slate@stat.fsu.edu and Pena, EA pena@stat.sc.edu.
Pena, EA and Slate, EH (2006). “Global validation of linear model assumptions,” J.\ Amer.\ Statist.\ Assoc., 101(473):341-354.
1 2 3 4 5 6 7 | data(CarMileageData)
CarModelAssess <- gvlma(NumGallons ~ MilesLastFill, data = CarMileageData)
CarModelAssess
CarModelDel <- deletion.gvlma(CarModelAssess)
CarModelDel
summary(CarModelDel)
summary(CarModelDel, allstats = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.