File: qqPlot.Rd

package info (click to toggle)
car 3.1-5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,496 kB
  • sloc: makefile: 2
file content (155 lines) | stat: -rw-r--r-- 7,429 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
\name{qqPlot}
\alias{qqPlot}
\alias{qqp}
\alias{qqPlot.default}
\alias{qqPlot.formula}
\alias{qqPlot.lm}
\alias{qqPlot.glm}

\title{Quantile-Comparison Plot}
\description{
 Plots empirical quantiles of a variable, or of studentized residuals from
 a linear model, against theoretical quantiles of a comparison distribution.  Includes
 options not available in the \code{\link{qqnorm}} function.
}
\usage{
qqPlot(x, ...)

qqp(...)

\method{qqPlot}{default}(x, distribution="norm", groups, layout,
    ylim=range(x, na.rm=TRUE), ylab=deparse(substitute(x)),
    xlab=paste(distribution, "quantiles"), glab=deparse(substitute(groups)),
    main=NULL, las=par("las"),
    envelope=TRUE, col=carPalette()[1], col.lines=carPalette()[2],
    lwd=2, pch=1, cex=par("cex"),
    line=c("quartiles", "robust", "none"), id=TRUE, grid=TRUE, ...)

\method{qqPlot}{formula}(formula, data, subset, id=TRUE, ylab, glab, ...)

\method{qqPlot}{lm}(x, xlab=paste(distribution, "Quantiles"),
    ylab=paste("Studentized Residuals(",
                deparse(substitute(x)), ")", sep=""),
    main=NULL, distribution=c("t", "norm"),
    line=c("robust", "quartiles", "none"), las=par("las"),
    simulate=TRUE, envelope=TRUE,  reps=100,
    col=carPalette()[1], col.lines=carPalette()[2], lwd=2, pch=1, cex=par("cex"),
    id=TRUE, grid=TRUE, ...)
}

\arguments{
  \item{x}{vector of numeric values or \code{lm} object.}
    \item{distribution}{root name of comparison distribution -- e.g., \code{"norm"} for the
    normal distribution; \code{t} for the t-distribution.}
  \item{groups}{an optional factor; if specified, a QQ plot will be drawn for \code{x}
    within each level of \code{groups}.}
  \item{layout}{a 2-vector with the number of rows and columns for plotting by
    groups -- for example \code{c(1, 3)} for 1 row and 3 columns; if omitted, the
    number of rows and columns will be selected automatically; the specified number
    of rows and columns must be sufficient to accomodate the number of groups; ignored
    if there is no grouping factor.}
  \item{formula}{one-sided formula specifying a single variable to be plotted or a two-sided formula of
    the form \code{variable ~ factor}, where a QQ plot will be drawn for \code{variable} within each
    level of \code{factor}.}
  \item{data}{optional data frame within which to evaluage the formula.}
  \item{subset}{optional subset expression to select cases to plot.}
  \item{ylim}{limits for vertical axis; defaults to the range of \code{x}. If plotting by groups, a common
    y-axis is used for all groups.}
  \item{ylab}{label for vertical (empirical quantiles) axis.}
  \item{xlab}{label for horizontal (comparison quantiles) axis.}
  \item{glab}{label for the grouping variable.}
  \item{main}{label for plot.}
  \item{envelope}{\code{TRUE} (the default), \code{FALSE}, a confidence level such as \code{0.95}, or a list specifying how to plot a point-wise confidence envelope (see Details).}
  \item{las}{if \code{0}, ticks labels are drawn parallel to the
    axis; set to \code{1} for horizontal labels (see \code{\link{par}}).}
  \item{col}{color for points; the default is the \emph{first} entry
    in the current \pkg{car} palette (see \code{\link{carPalette}}
    and \code{\link{par}}).}
  \item{col.lines}{color for lines; the default is the \emph{second} entry
    in the current \pkg{car} palette.}
  \item{pch}{plotting character for points; default is \code{1}
    (a circle, see \code{\link{par}}).}
  \item{cex}{factor for expanding the size of plotted symbols; the default is
    \code{1}.}
  \item{id}{controls point identification; if \code{FALSE}, no points are identified;
    can be a list of named arguments to the \code{\link{showLabels}} function;
    \code{TRUE} is equivalent to \code{list(method="y", n=2, cex=1, col=carPalette()[1], location="lr")},
    which identifies the 2 points with the 2 points with the most extreme
    verical values --- studentized residuals for the \code{"lm"} method. Points labels are by default
    taken from the names of the variable being plotted is any, else case indices are used.  Unlike most graphical functions in \pkg{car}, the default is \code{id=TRUE} to include point identification.}
  \item{lwd}{line width; default is \code{2} (see \code{\link{par}}).}
  \item{line}{\code{"quartiles"} to pass a line through the quartile-pairs, or
    \code{"robust"} for a robust-regression line; the latter uses the \code{rlm}
    function in the \code{MASS} package. Specifying \code{line = "none"} suppresses the line.}
  \item{simulate}{if \code{TRUE} calculate confidence envelope by parametric bootstrap;
    for \code{lm} object only. The method is due to Atkinson (1985).}
  \item{reps}{integer; number of bootstrap replications for confidence envelope.}
  \item{\dots}{arguments such as \code{df} to be passed to the appropriate quantile function.}
  \item{grid}{If TRUE, the default, a light-gray background grid is put on the
graph}
}

\details{
  Draws theoretical quantile-comparison plots for variables and for studentized residuals
  from a linear model. A comparison line is drawn on the plot either through the quartiles
  of the two distributions, or by robust regression.

  Any distribution for which quantile and
  density functions exist in R (with prefixes \code{q} and \code{d}, respectively) may be used.
  When plotting a vector, the confidence envelope is based on the SEs of the order statistics
  of an independent random sample from the comparison distribution (see Fox, 2016).
  Studentized residuals from linear models are plotted against the appropriate t-distribution with a point-wise
  confidence envelope computed by default by a parametric bootstrap,
  as described by Atkinson (1985).
  The function \code{qqp} is an abbreviation for \code{qqPlot}.
  
  The \code{envelope} argument can take a list with the following named elements; if an element is missing, then the default value is used:
  
  \describe{
  
  \item{\code{level}}{confidence level (default \code{0.95}).}
  
  \item{\code{style}}{one of \code{"filled"} (the default), \code{"lines"}, or \code{"none"}.}
  
  \item{\code{col}}{color (default is the value of \code{col.lines}).}
  
  \item{\code{alpha}}{transparency/opacity of a filled confidence envelope, a number between 0 and 1 (default \code{0.15}).}
  
  \item{\code{border}}{controls whether a border is drawn around a filled confidence envelope (default \code{TRUE}).}
    }
}
\value{
  These functions return the labels of identified points, unless a grouping factor is employed,
  in which case \code{NULL} is returned invisibly.
}
\references{
  Fox, J. (2016)
  \emph{Applied Regression Analysis and Generalized Linear Models},
  Third Edition. Sage.

  Fox, J. and Weisberg, S. (2019)
  \emph{An R Companion to Applied Regression}, Third Edition, Sage.

  Atkinson, A. C. (1985)
  \emph{Plots, Transformations, and Regression.} Oxford.
}
\author{John Fox \email{jfox@mcmaster.ca}}

\seealso{\code{\link{qqplot}}, \code{\link{qqnorm}},
 \code{\link{qqline}}, \code{\link{showLabels}}}

\examples{
x<-rchisq(100, df=2)
qqPlot(x)
qqPlot(x, dist="chisq", df=2, envelope=list(style="lines"))

qqPlot(~ income, data=Prestige, subset = type == "prof")
qqPlot(income ~ type, data=Prestige, layout=c(1, 3))

qqPlot(lm(prestige ~ income + education + type, data=Duncan),
	envelope=.99)
}

\keyword{distribution}
\keyword{univar}
\keyword{regression}