📄 statistics.java
字号:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* ---------------
* Statistics.java
* ---------------
* (C) Copyright 2000-2003, by Matthew Wright and Contributors.
*
* Original Author: Matthew Wright;
* Contributor(s): David Gilbert (for Object Refinery Limited);
*
* $Id: Statistics.java,v 1.1 2003/09/01 10:03:32 mungady Exp $
*
* Changes (from 08-Nov-2001)
* --------------------------
* 08-Nov-2001 : Added standard header and tidied Javadoc comments (DG);
* Moved from JFreeChart to package com.jrefinery.data.* in JCommon class
* library (DG);
* 24-Jun-2002 : Removed unnecessary local variable (DG);
* 07-Oct-2002 : Fixed errors reported by Checkstyle (DG);
*
*/
package org.jfree.data.statistics;
/**
* A utility class that provides some simple statistical functions.
*
* @author Matthew Wright
*/
public class Statistics {
/**
* Returns the average of a set of numbers.
*
* @param data the data.
*
* @return the average of a set of numbers.
*/
public static double getAverage(Number[] data) {
double sum = 0.0;
int counter = 0;
for (; counter < data.length; counter++) {
sum = sum + data[counter].doubleValue();
}
return (sum / counter);
}
/**
* Returns the standard deviation of a set of numbers.
*
* @param data the data.
*
* @return the standard deviation of a set of numbers.
*/
public static double getStdDev(Number[] data) {
double avg = getAverage(data);
double sum = 0.0;
int counter = 0;
double diff = 0.0;
for (; counter < data.length; counter++) {
diff = data[counter].doubleValue() - avg;
sum = sum + diff * diff;
}
return Math.sqrt(sum / (counter - 1));
}
/**
* Fits a straight line to a set of (x, y) data, returning the slope and
* intercept.
*
* @param xData the x-data.
* @param yData the y-data.
*
* @return a double array with the intercept in [0] and the slope in [1].
*/
public static double[] getLinearFit(Number[] xData, Number[] yData) {
// check arguments...
if (xData.length != yData.length) {
throw new IllegalArgumentException(
"Statistics.getLinearFit(...): array lengths must be equal.");
}
double[] result = new double[2];
// slope
result[1] = getSlope(xData, yData);
// intercept
result[0] = getAverage(yData) - result[1] * getAverage(xData);
return result;
}
/**
* Finds the slope of a regression line using least squares.
*
* @param xData an array of Numbers (the x values).
* @param yData an array of Numbers (the y values).
*
* @return the slope.
*/
public static double getSlope(Number[] xData, Number[] yData) {
// check arguments...
if (xData.length != yData.length) {
throw new IllegalArgumentException(
"Statistics.getSlope(...): array lengths must be equal.");
}
// ********* stat function for linear slope ********
// y = a + bx
// a = ybar - b * xbar
// sum(x * y) - (sum (x) * sum(y)) / n
// b = ------------------------------------
// sum (x^2) - (sum(x)^2 / n
// *************************************************
// sum of x, x^2, x * y, y
double sx = 0.0, sxx = 0.0, sxy = 0.0, sy = 0.0;
int counter;
for (counter = 0; counter < xData.length; counter++) {
sx = sx + xData[counter].doubleValue();
sxx = sxx + Math.pow(xData[counter].doubleValue(), 2);
sxy = sxy + yData[counter].doubleValue() * xData[counter].doubleValue();
sy = sy + yData[counter].doubleValue();
}
return (sxy - (sx * sy) / counter) / (sxx - (sx * sx) / counter);
}
/**
* Calculates the correlation between two datasets.
*
* @param data1 the first dataset.
* @param data2 the second dataset.
*
* @return the correlation between two datasets.
*/
public static double getCorrelation(Number[] data1, Number[] data2) {
// check arguments...
if (data1.length != data2.length) {
throw new IllegalArgumentException(
"Statistics.getCorrelation(...): array lengths must be equal.");
}
double xavg = 0, yavg = 0;
double xstd = 0, ystd = 0;
int counter = 0;
// copy to a local variable
Number[] xData = new Double[data1.length];
Number[] yData = new Double[data2.length];
for (int i = 0; i < data1.length; i++) {
xData[i] = new Double(data1[i].doubleValue());
}
for (int i = 0; i < data2.length; i++) {
yData[i] = new Double(data2[i].doubleValue());
}
// get averages and standard deviations for calculations
xavg = getAverage(xData);
yavg = getAverage(yData);
xstd = getStdDev(xData);
ystd = getStdDev(yData);
// convert to standard units
for (; counter < xData.length; counter++) {
xData[counter] = new Double((xData[counter].doubleValue() - xavg) / xstd);
yData[counter] = new Double((yData[counter].doubleValue() - yavg) / ystd);
}
// get the product of the standard units
for (counter = 0; counter < xData.length; counter++) {
xData[counter] = new Double(xData[counter].doubleValue()
* yData[counter].doubleValue());
}
return getAverage(xData);
}
/**
* Returns a data set for a moving average on the data set passed in.
*
* @param xData an array of the x data.
* @param yData an array of the y data.
* @param period the number of data points to average
*
* @return a double[][] the length of the data set in the first dimension,
* with two doubles for x and y in the second dimension
*/
public static double[][] getMovingAverage(Number[] xData, Number[] yData, int period) {
// check arguments...
if (xData.length != yData.length) {
throw new IllegalArgumentException(
"Statistics.getMovingAverage(...): array lengths must be equal.");
}
if (period > xData.length) {
throw new IllegalArgumentException(
"Statistics.getMovingAverage(...): period can't be longer than dataset.");
}
double[][] result = new double[xData.length - period][2];
for (int i = 0; i < result.length; i++) {
result[i][0] = xData[i + period].doubleValue();
// holds the moving average sum
double sum = 0.0;
for (int j = 0; j < period; j++) {
sum += yData[i + j].doubleValue();
}
sum = sum / period;
result[i][1] = sum;
}
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -