Examples of ChisquareZeroDfDistribution


Examples of org.renjin.stats.internals.distributions.ChisquareZeroDfDistribution

  }

  @DataParallel @Internal
  public static double pchisq(@Recycle double q, @Recycle double df, boolean lowerTail, boolean logP) {
    if(df == 0) {
      return p(new ChisquareZeroDfDistribution(), q, lowerTail, logP);
    } else {
      return p(new ChiSquaredDistributionImpl(df), q, lowerTail, logP);
    }
  }
View Full Code Here

Examples of org.renjin.stats.internals.distributions.ChisquareZeroDfDistribution

  }

  @DataParallel @Internal
  public static double qchisq(@Recycle double p, @Recycle double df, boolean lowerTail, boolean logP) {
    if(df == 0) {
      return q(new ChisquareZeroDfDistribution(), p, lowerTail, logP);
    } else {
      return q(new ChiSquaredDistributionImpl(df), p, lowerTail, logP);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.