qqnormp {normalp} | R Documentation |
The function qqnormp
produces a normal of order p Q-Q plot of the values in
y
. The function qqlinep
adds a line to a normal of order p Q-Q plot going
through the first and the third quartile.
qqnormp(y, ylim, p=2, main="Normal of order p Q-Q plot", xlab="Theoretical Quantiles", ylab="Sample Quantiles", ...) qqlinep(y, p=2, ...)
y |
Vector of observations. |
p |
The structure parameter. |
main,xlab,ylab |
Plot labels. |
ylim, ... |
Graphical parameters |
Angelo M. Mineo
## Normal of order p Q-Q plot for a sample of 100 observations. e<-rnormp(100,mu=0,sigmap=1,p=3) qqnormp(e,p=3) qqlinep(e,p=3)