plot.lmp {normalp} | R Documentation |
Diagnostic plots for a lmp object
Description
This function produces four plots: a plot of residuals against fitted value, a Normal Q-Q plot,
an Exponential Power Distribution Q-Q plot, a Scale-Location plot, with a p
-root of the standardized
residuals against the fitted values.
Usage
## S3 method for class 'lmp'
plot(x, ...)
Arguments
x |
A |
... |
Further arguments passed to or from other methods. |
Details
The standardized residuals in the Normal Q-Q plot are those of an object lm
;
in the Exponential Power distribution Q-Q plot and in the scale location plot the standardized residuals
are computed as (e_i-m_p)/(s_p)
.
Author(s)
Angelo M. Mineo
Examples
x<-1:20
z<-runif(20)
e<-rnormp(20,mu=0,sigmap=1,p=3)
y<-0.5+x+z+e
lmp.res<-lmp(y~x+z)
plot(lmp.res)
[Package normalp version 0.7.2.1 Index]