|
Header
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jfree.data.statistics.Regression
public abstract class Regression
A utility class for fitting regression curves to data.
Constructor Summary | |
---|---|
Regression()
|
Method Summary | |
---|---|
static double[] |
getOLSRegression(double[][] data)
Returns the parameters 'a' and 'b' for an equation y = a + bx, fitted to the data using ordinary least squares regression. |
static double[] |
getOLSRegression(XYDataset data,
int series)
Returns the parameters 'a' and 'b' for an equation y = a + bx, fitted to the data using ordinary least squares regression. |
static double[] |
getPowerRegression(double[][] data)
Returns the parameters 'a' and 'b' for an equation y = ax^b, fitted to the data using a power regression equation. |
static double[] |
getPowerRegression(XYDataset data,
int series)
Returns the parameters 'a' and 'b' for an equation y = ax^b, fitted to the data using a power regression equation. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Regression()
Method Detail |
---|
public static double[] getOLSRegression(double[][] data)
data
- the data.
public static double[] getOLSRegression(XYDataset data, int series)
data
- the data.series
- the series (zero-based index).
public static double[] getPowerRegression(double[][] data)
data
- the data.
public static double[] getPowerRegression(XYDataset data, int series)
data
- the data.series
- the series to fit the regression line against.
|
Footer
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |