Removed link to external definition, as formula has been added to javadoc.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141355 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b77e14987d
commit
bc5b99791c
|
@ -20,7 +20,7 @@ import java.io.Serializable;
|
||||||
import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic;
|
import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Computes <a href="http://en.wikipedia.org/wiki/Kurtosis">Kurtosis</a>.
|
* Computes the Kurtosis of the available values.
|
||||||
* <p>
|
* <p>
|
||||||
* We use the following (unbiased) formula to define kurtosis:
|
* We use the following (unbiased) formula to define kurtosis:
|
||||||
* <p>
|
* <p>
|
||||||
|
@ -31,7 +31,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis
|
||||||
* Note that this statistic is undefined for n < 4. <code>Double.Nan</code> is returned when
|
* Note that this statistic is undefined for n < 4. <code>Double.Nan</code> is returned when
|
||||||
* there is not sufficient data to compute the statistic.
|
* there is not sufficient data to compute the statistic.
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.23 $ $Date: 2004/06/27 19:37:51 $
|
* @version $Revision: 1.24 $ $Date: 2004/07/02 05:29:14 $
|
||||||
*/
|
*/
|
||||||
public class Kurtosis extends AbstractStorelessUnivariateStatistic implements Serializable {
|
public class Kurtosis extends AbstractStorelessUnivariateStatistic implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import java.io.Serializable;
|
||||||
import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic;
|
import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Computes <a href="http://en.wikipedia.org/wiki/Skewness">Skewness</a>.
|
* Computes the skewness of the available values.
|
||||||
* <p>
|
* <p>
|
||||||
* We use the following (unbiased) formula to define skewness:
|
* We use the following (unbiased) formula to define skewness:
|
||||||
* <p>
|
* <p>
|
||||||
|
@ -29,7 +29,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis
|
||||||
* where n is the number of values, mean is the {@link Mean} and std is the
|
* where n is the number of values, mean is the {@link Mean} and std is the
|
||||||
* {@link StandardDeviation}
|
* {@link StandardDeviation}
|
||||||
*
|
*
|
||||||
* @version $Revision: 1.22 $ $Date: 2004/06/27 19:37:51 $
|
* @version $Revision: 1.23 $ $Date: 2004/07/02 05:29:14 $
|
||||||
*/
|
*/
|
||||||
public class Skewness extends AbstractStorelessUnivariateStatistic implements Serializable {
|
public class Skewness extends AbstractStorelessUnivariateStatistic implements Serializable {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue