Re: Normal Probability plot
- To: mathgroup at smc.vnet.net
 - Subject: [mg91826] Re: Normal Probability plot
 - From: Bill Rowe <readnews at sbcglobal.net>
 - Date: Tue, 9 Sep 2008 06:57:29 -0400 (EDT)
 
On 9/7/08 at 10:53 PM, y.eaidgah at gmail.com (Youness Eaidgah) wrote:
>Thank u all for ur reply (Bill and peter). Your suggested solutions
>work fine and they helped me out. Also, I am interetstd to plot my
>data on a standard normal probability paper. is it possible to make
>a normal probability paper with Mathematica? On a normal probability
>paper, one axe blongs to population(set of data) and another one,
>vertical axe mostly, belongs to cumulative distribution. last axe is
>sacled specially.
Yes, it is possible. For example,
data = Sort@RandomReal[NormalDistribution[0, 1], {100}];
ListPlot[MapIndexed[{#1,
    Quantile[NormalDistribution[0, 1], #2[[1]]/100]} &, data],
 Frame -> True, Axes -> None,
 FrameTicks -> {Automatic, {Quantile[
       NormalDistribution[0,
        1], #], #} & /@ {.01, .05, .1, .2, .3, .4, .5, .6, .7, .8, \
.9, .95, .99}, None, None}]