Package org.renjin.stats.internals.distributions

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


    return Geometric.qgeom(p, prob, lowerTail, log);
  }

  @DataParallel @Internal
  public static double plogis(@Recycle double p, @Recycle double m, @Recycle double s, boolean lowerTail, boolean logP) {
    return p(new LogisticDistribution(m, s), p, lowerTail, logP);
  }
View Full Code Here


    return p(new LogisticDistribution(m, s), p, lowerTail, logP);
  }

  @DataParallel @Internal
  public static double dlogis(@Recycle double x, @Recycle double location, @Recycle double scale, boolean log) {
    return d(new LogisticDistribution(location, scale), x, log);
  }
View Full Code Here

    return d(new LogisticDistribution(location, scale), x, log);
  }

  @DataParallel @Internal
  public static double qlogis(@Recycle double p, @Recycle double m, @Recycle double s, boolean lowerTail, boolean logP) {
    return q(new LogisticDistribution(m, s), p, lowerTail, logP);
  }
View Full Code Here

TOP

Related Classes of org.renjin.stats.internals.distributions.LogisticDistribution

Copyright © 2018 www.massapicom. 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.