public class LogarithmicDist extends DiscreteDistributionInt
DiscreteDistributionInt for
the logarithmic distribution. It has shape parameter
θ, where
0 < θ < 1.
Its mass function is
EPSILON| Constructor and Description |
|---|
LogarithmicDist(double theta)
Constructs a logarithmic distribution with parameter θ =
theta.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
barF(double theta,
int x)
Computes the complementary distribution function.
|
double |
barF(int x)
Returns bar(F)(x), the complementary
distribution function.
|
static double |
cdf(double theta,
int x)
Computes the distribution function F(x).
|
double |
cdf(int x)
Returns the distribution function F evaluated at x
(see).
|
static LogarithmicDist |
getInstanceFromMLE(int[] x,
int n)
Creates a new instance of a logarithmic distribution with parameter
θ estimated using the maximum likelihood method based on the n
observations x[i],
i = 0, 1,…, n - 1.
|
static double[] |
getMaximumLikelihoodEstimate(int[] x,
int n)
Deprecated.
|
double |
getMean()
Returns the mean of the distribution function.
|
static double |
getMean(double theta)
Computes and returns the mean
of the logarithmic distribution with parameter θ = theta.
|
static double[] |
getMLE(int[] x,
int n)
Estimates the parameter θ of the logarithmic distribution
using the maximum likelihood method, from the n observations
x[i],
i = 0, 1,…, n - 1.
|
double[] |
getParams()
Return a table containing the parameters of the current distribution.
|
double |
getStandardDeviation()
Returns the standard deviation of the distribution function.
|
static double |
getStandardDeviation(double theta)
Computes and returns the standard deviation of the
logarithmic distribution with parameter θ = theta.
|
double |
getTheta()
Returns the θ associated with this object.
|
double |
getVariance()
Returns the variance of the distribution function.
|
static double |
getVariance(double theta)
Computes and returns the variance
of the logarithmic distribution with parameter θ = theta.
|
static int |
inverseF(double theta,
double u) |
int |
inverseFInt(double u)
Returns the inverse distribution function
F-1(u), where
0 <= u <= 1.
|
static double |
prob(double theta,
int x)
Computes the logarithmic probability p(x).
|
double |
prob(int x)
Returns p(x), the probability of x,
which should be a real number in the interval [0, 1].
|
void |
setTheta(double theta)
Sets the θ associated with this object.
|
java.lang.String |
toString() |
public LogarithmicDist(double theta)
public double prob(int x)
DiscreteDistributionIntprob in class DiscreteDistributionIntx - value at which the mass function must be evaluatedpublic double cdf(int x)
DiscreteDistributionIntcdf in class DiscreteDistributionIntx - value at which the distribution function must be evaluatedpublic double barF(int x)
DiscreteDistributionIntbarF in class DiscreteDistributionIntx - value at which the complementary distribution function
must be evaluatedpublic int inverseFInt(double u)
DiscreteDistributionIntinverseFInt in class DiscreteDistributionIntu - value in the interval (0, 1) for which
the inverse distribution function is evaluatedpublic double getMean()
Distributionpublic double getVariance()
Distributionpublic double getStandardDeviation()
Distributionpublic static double prob(double theta,
int x)
public static double cdf(double theta,
int x)
public static double barF(double theta,
int x)
public static int inverseF(double theta,
double u)
public static double[] getMLE(int[] x,
int n)
x - the list of observations used to evaluate parametersn - the number of observations used to evaluate parameters@Deprecated
public static double[] getMaximumLikelihoodEstimate(int[] x,
int n)
getMLE.public static LogarithmicDist getInstanceFromMLE(int[] x, int n)
x - the list of observations to use to evaluate parametersn - the number of observations to use to evaluate parameterspublic static double getMean(double theta)
public static double getVariance(double theta)
public static double getStandardDeviation(double theta)
public double getTheta()
public void setTheta(double theta)
public double[] getParams()
public java.lang.String toString()
toString in class java.lang.ObjectTo submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.