3

我在向量中有数据点,我想计算数据集的偏度和峰度。

我该如何使用 apache commons 来解决这个问题?

Vector<Double> mydata = new Vector<Double>
//data points are added by my routing

我在文档中找到的代码是这样的:

    FourthMoment m4 = new FourthMoment();
    Mean m = new Mean(m4);
    Variance v = new Variance(m4);
    Skewness s= new Skewness(m4);
    Kurtosis k = new Kurtosis(m4);
    assertEquals(var,v.getResult(),tolerance);
    assertEquals(skew ,s.getResult(),tolerance);

但是我的编译器无法识别 Fourthmoment。我如何实际获取 mydata ?

感谢您的帮助,我似乎无法获得明确的示例。

我使用 3.1.1 版本,它可以识别我的所有导入,除了第一个:

import org.apache.commons.math3.stat.descriptive.moment.FourthMoment;
import org.apache.commons.math3.stat.descriptive.moment.Kurtosis;
import org.apache.commons.math3.stat.descriptive.moment.Mean;
import org.apache.commons.math3.stat.descriptive.moment.Skewness;
import org.apache.commons.math3.stat.descriptive.moment.Variance;
4

1 回答 1

3

我需要这个第四时刻吗?或者我可以根据我的向量计算它吗?

我认为您可以直接使用Kurtosis.evaluate().

于 2013-04-05T15:05:34.973 回答