大家好,又见面了,我是你们的朋友全栈君。
最近做数据分析时需要用到一个离散值的东西
我个人的理解就是每个数与所有数平均值的差的平均
实现方法如下:
public static double doCal(double [] datas){
//平均值
double pingjun = 0;
//总和/个数
double total = 0;
for(int i =0;i<datas.length;i++){
total += datas[i];
}
NumberFormat nf = NumberFormat.getNumberInstance();
nf.setMaximumFractionDigits(4);
pingjun = total/datas.length;
System.out.println("平均值:"+nf.format(pingjun));
double total1 = 0;
for(int i =0;i<datas.length;i++){
total1 += Math.abs(pingjun-datas[i]);
}
String xx = nf.format(total1/datas.length);
System.out.println("离散值:"+xx);
return Double.parseDouble(xx);
}
转载于:https://blog.51cto.com/13876516/2149148
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/107406.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...