

   ppoints {base}                               R Documentation

   OOrrddiinnaatteess ffoorr PPrroobbaabbiilliittyy PPlloottttiinngg

   DDeessccrriippttiioonn::

        Generates the sequence of ``probability'' points `(1:m
        - a)/(m + (1-a)-a)' where `m' is either `n', if
        `length(n)==1', or `length(n)'.

   UUssaaggee::

        ppoints(n, a = ifelse(n <= 10, 3/8, 1/2))

   DDeettaaiillss::

        If 0 < a < 1, the resulting values are within (0,1)
        (excluding boundaries).  In any case, the resulting
        sequence is symmetric in [0,1], i.e., `p + rev(p) ==
        1'.

        `ppoints()' is used in `qqplot' and `qqnorm' to gener-
        ate the set of probabilities at which to evaluate the
        inverse distribution.

   SSeeee AAllssoo::

        `qqplot', `qqnorm'.

   EExxaammpplleess::

        ppoints(4) # the same as  ppoints(1:4)
        ppoints(10)
        ppoints(10, a=1/2)

