Java org.jfree.data.statistics Regression fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.statistics Regression fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.statistics Regression.

The text is from its open source code.

Method

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.
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.
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.