qqnormp {normalp}R Documentation

Quantile-Quantile plot for a normal of order p distribution

Description

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.

Usage

qqnormp(y, ylim, p=2, main="Normal of order p Q-Q plot",
            xlab="Theoretical Quantiles", ylab="Sample Quantiles", ...)
qqlinep(y, p=2, ...)

Arguments

y Vector of observations.
p The structure parameter.
main,xlab,ylab Plot labels.
ylim, ... Graphical parameters

Author(s)

Angelo M. Mineo

Examples

## 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)

[Package Contents]