我在向量中有数据点,我想计算数据集的偏度和峰度。
我该如何使用 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;