的斜率我有2個陣列相等的長度。以下函數嘗試使用這些數組計算斜率。它返回每個點之間的斜率的平均值。對於以下數據集,我似乎獲得了不同於Excel和Google文檔的值。計算一系列值
double[] x_values = { 1932, 1936, 1948, 1952, 1956, 1960, 1964, 1968,
1972, 1976, 1980 };
double[] y_values = { 197, 203, 198, 204, 212, 216, 218, 224, 223, 225,
236 };
public static double getSlope(double[] x_values, double[] y_values)
throws Exception {
if (x_values.length != y_values.length)
throw new Exception();
double slope = 0;
for (int i = 0; i < (x_values.length - 1); i++) {
double y_2 = y_values[i + 1];
double y_1 = y_values[i];
double delta_y = y_2 - y_1;
double x_2 = x_values[i + 1];
double x_1 = x_values[i];
double delta_x = x_2 - x_1;
slope += delta_y/delta_x;
}
System.out.println(x_values.length);
return slope/(x_values.length);
}
輸出
谷歌:0.755
getSlope():0.962121212121212
Excel中:0.7501
見數例[這裏](HTTP:// EN .wikipedia.org/wiki/Simple_linear_regression)進行計算。這對編碼應該是微不足道的。 – karmanaut 2013-03-15 12:27:31