Uses of Interface
org.apache.commons.math3.distribution.RealDistribution
-
Packages that use RealDistribution Package Description org.apache.commons.math3.distribution Implementations of common discrete and continuous distributions.org.apache.commons.math3.ml.neuralnet Neural networks.org.apache.commons.math3.random Random number and random data generators.org.apache.commons.math3.stat.inference Classes providing hypothesis testing. -
-
Uses of RealDistribution in org.apache.commons.math3.distribution
Classes in org.apache.commons.math3.distribution that implement RealDistribution Modifier and Type Class Description classAbstractRealDistributionBase class for probability distributions on the reals.classBetaDistributionImplements the Beta distribution.classCauchyDistributionImplementation of the Cauchy distribution.classChiSquaredDistributionImplementation of the chi-squared distribution.classConstantRealDistributionImplementation of the constant real distribution.classEnumeratedRealDistributionImplementation of a real-valuedEnumeratedDistribution.classExponentialDistributionImplementation of the exponential distribution.classFDistributionImplementation of the F-distribution.classGammaDistributionImplementation of the Gamma distribution.classGumbelDistributionThis class implements the Gumbel distribution.classLaplaceDistributionThis class implements the Laplace distribution.classLevyDistributionThis class implements the Lévy distribution.classLogisticDistributionThis class implements the Logistic distribution.classLogNormalDistributionImplementation of the log-normal (gaussian) distribution.classNakagamiDistributionThis class implements the Nakagami distribution.classNormalDistributionImplementation of the normal (gaussian) distribution.classParetoDistributionImplementation of the Pareto distribution.classTDistributionImplementation of Student's t-distribution.classTriangularDistributionImplementation of the triangular real distribution.classUniformRealDistributionImplementation of the uniform real distribution.classWeibullDistributionImplementation of the Weibull distribution. -
Uses of RealDistribution in org.apache.commons.math3.ml.neuralnet
Methods in org.apache.commons.math3.ml.neuralnet with parameters of type RealDistribution Modifier and Type Method Description static FeatureInitializerFeatureInitializerFactory. randomize(RealDistribution random, FeatureInitializer orig)Adds some amount of random data to the given initializer. -
Uses of RealDistribution in org.apache.commons.math3.random
Classes in org.apache.commons.math3.random that implement RealDistribution Modifier and Type Class Description classEmpiricalDistributionRepresents an empirical probability distribution -- a probability distribution derived from observed data without making any assumptions about the functional form of the population distribution that the data come from.Methods in org.apache.commons.math3.random that return RealDistribution Modifier and Type Method Description protected RealDistributionEmpiricalDistribution. getKernel(SummaryStatistics bStats)The within-bin smoothing kernel.private RealDistributionEmpiricalDistribution. k(double x)The within-bin kernel of the bin that x belongs to.Methods in org.apache.commons.math3.random with parameters of type RealDistribution Modifier and Type Method Description doubleRandomDataImpl. nextInversionDeviate(RealDistribution distribution)Deprecated.use the distribution's sample() method -
Uses of RealDistribution in org.apache.commons.math3.stat.inference
Methods in org.apache.commons.math3.stat.inference with parameters of type RealDistribution Modifier and Type Method Description private static voidKolmogorovSmirnovTest. jitter(double[] data, RealDistribution dist)Adds random jitter todatausing deviates sampled fromdist.doubleKolmogorovSmirnovTest. kolmogorovSmirnovStatistic(RealDistribution distribution, double[] data)Computes the one-sample Kolmogorov-Smirnov test statistic, \(D_n=\sup_x |F_n(x)-F(x)|\) where \(F\) is the distribution (cdf) function associated withdistribution, \(n\) is the length ofdataand \(F_n\) is the empirical distribution that puts mass \(1/n\) at each of the values indata.static doubleTestUtils. kolmogorovSmirnovStatistic(RealDistribution dist, double[] data)doubleKolmogorovSmirnovTest. kolmogorovSmirnovTest(RealDistribution distribution, double[] data)Computes the p-value, or observed significance level, of a one-sample Kolmogorov-Smirnov test evaluating the null hypothesis thatdataconforms todistribution.doubleKolmogorovSmirnovTest. kolmogorovSmirnovTest(RealDistribution distribution, double[] data, boolean exact)Computes the p-value, or observed significance level, of a one-sample Kolmogorov-Smirnov test evaluating the null hypothesis thatdataconforms todistribution.booleanKolmogorovSmirnovTest. kolmogorovSmirnovTest(RealDistribution distribution, double[] data, double alpha)Performs a Kolmogorov-Smirnov test evaluating the null hypothesis thatdataconforms todistribution.static doubleTestUtils. kolmogorovSmirnovTest(RealDistribution dist, double[] data)static doubleTestUtils. kolmogorovSmirnovTest(RealDistribution dist, double[] data, boolean strict)static booleanTestUtils. kolmogorovSmirnovTest(RealDistribution dist, double[] data, double alpha)
-