Documentation of 'jdistlib.Wilcoxon' Java class
Wilcoxon
jdistlib

Class Wilcoxon



  • public class Wilcoxon
    extends GenericDistribution
      SYNOPSIS
    
        #include 
        double dwilcox(double x, double m, double n, int give_log)
        double pwilcox(double x, double m, double n, int lower_tail, int log_p)
        double qwilcox(double x, double m, double n, int lower_tail, int log_p);
        double rwilcox(double m, double n)
    
      DESCRIPTION
    
        dwilcox     The density of the Wilcoxon distribution.
        pwilcox     The distribution function of the Wilcoxon distribution.
        qwilcox     The quantile function of the Wilcoxon distribution.
        rwilcox     Random variates from the Wilcoxon distribution. 

    NOTE: Since the computation of Wilcoxon distribution is highly dependent on the matrix w, the dimensions of which depends on m and n (parameters of the Wilcoxon distribution), I decided to make this class as dynamic. -- Roby Joehanes

    • Constructor Detail

      • Wilcoxon

        public Wilcoxon(int m,
                        int n)
    • Method Detail

      • getM

        public int getM()
      • getN

        public int getN()
      • density

        public double density(int x,
                              boolean give_log)
      • cumulative

        public double cumulative(int q,
                                 boolean lower_tail,
                                 boolean log_p)
      • quantile

        public double quantile(double x,
                               boolean lower_tail,
                               boolean log_p)
        Specified by:
        quantile in class GenericDistribution

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.