qqnormp {normalp} | R Documentation |
The function qqnormp
produces an exponential power distribution Q-Q plot of the values in
y
. The function qqlinep
adds a line to an exponential power distribution Q-Q plot going
through the first and the third quartile.
qqnormp(y, ylim, p, main, xlab, ylab, ...) qqlinep(y, p=2, ...)
y |
Vector of observations. |
p |
The shape parameter. |
main,xlab,ylab |
Plot labels. |
ylim, ... |
Graphical parameters |
Angelo M. Mineo
## Exponential power distribution 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)