Java Statistics Pack for Robust Statistics

I am looking for a java package for "Robust Statistics". Note the value "Trusted" here.

I know about the total shares of Apache Math Descriptive statistics and summary statistics, but they only provide dissimilar statistics.

An example here would be the median absolute deviation

+6
source share
1 answer

I am not sure if this will give you an exact solution. But you can get these functions using the apache math library. This is an example of obtaining the average absolute deviation.

public double mad(double [] autoCorrelationValues){ double [] tempTable = new double[autoCorrelationValues.length]; Median m = new Median(); double medianValue = m.evaluate(autoCorrelationValues); for(int i=0 ; i<autoCorrelationValues.length ;i++){ tempTable[i] = Math.abs(autoCorrelationValues[i] - medianValue); } return m.evaluate(tempTable); } 
+2
source

Source: https://habr.com/ru/post/924032/


All Articles