From bc5b99791c8c43323c556405f819358a64326b37 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Fri, 2 Jul 2004 05:29:14 +0000 Subject: [PATCH] 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 --- .../apache/commons/math/stat/univariate/moment/Kurtosis.java | 4 ++-- .../apache/commons/math/stat/univariate/moment/Skewness.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java b/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java index d4a3c15f9..3357a5f25 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java @@ -20,7 +20,7 @@ import java.io.Serializable; import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; /** - * Computes Kurtosis. + * Computes the Kurtosis of the available values. *

* We use the following (unbiased) formula to define kurtosis: *

@@ -31,7 +31,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis * Note that this statistic is undefined for n < 4. Double.Nan is returned when * 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 { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java b/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java index 259e6e1cb..1c161e137 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java @@ -20,7 +20,7 @@ import java.io.Serializable; import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; /** - * Computes Skewness. + * Computes the skewness of the available values. *

* We use the following (unbiased) formula to define skewness: *

@@ -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 * {@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 {