Skip to content
Prev 131058 / 398506 Next

Please help!

jimbib webber <alfieim21 at hotmail.co.uk> wrote in
news:BLU108-W44A9C8E34EC3B26B0D73C1F2730 at phx.gbl:
Try:
qqnorm(x); qqline(x, col = 2)

....as suggested in the examples in the help message from ?qqplot.

If you want the quantiles, invoking str(qqnorm(x)) suggests that the "x-
values" can be recovered by:

 qqnorm(x)$x

 ....and therefore the quantiles from:

pnorm(qqnorm(x)$x)