

   SignRank {base}                              R Documentation

   DDiissttrriibbuuttiioonn ooff tthhee WWiillccooxxoonn SSiiggnneedd RRaannkk SSttaattiissttiicc

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

        dsignrank(x, n)
        psignrank(q, n)
        qsignrank(p, n)
        rsignrank(nn, n)

   AArrgguummeennttss::

        x,q: vector of quantiles.

          p: vector of probabilities.

         nn: number of observations to generate.

          n: numbers of observations in the sample.  Must be
             positive integers less than 50.

   VVaalluuee::

        These functions provide information about the distribu-
        tion of the Wilcoxon Signed Rank statistic obtained
        from a sample with size `n'.  `dsignrank' gives the
        density, `psignrank' gives the distribution function,
        `qsignrank' gives the quantile function, and `rsign-
        rank' generates random deviates.

        This distribution is obtained as follows.  Let `x' be a
        sample of size `n' from a continuous distribution sym-
        metric about the origin.  Then the Wilcoxon signed rank
        statistic is the sum of the ranks of the absolute val-
        ues `x[i]' for which `x[i]' is positive.  This statis-
        tic takes values between 0 and n(n+1)/2, and its mean
        and variance are n(n+1)/4 and n(n+1)(2n+1)/24, respec-
        tively.

   AAuutthhoorr((ss))::

        Kurt Hornik hornik@ci.tuwien.ac.at

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

        `dwilcox' etc, for the two-sample Wilcoxon rank sum
        statistic.

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

        par(mfrow=c(2,2))
        for(n in c(4:5,10,40)) {
          x <- seq(0, n*(n+1)/2, length=501)
          plot(x, dsignrank(x,n=n), type='l', main=paste("dsignrank(x,n=",n,")"))
        }

