Packages

object SimpleRegression

The SimpleRegression companion object provides a simple factory method for building simple regression linear regression models.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleRegression
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(x: VectoD, y: VectoD): SimpleRegression

    Create a Simple Linear Regression model, automatically prepending the column of ones (form matrix from two column vectors [1 x]).

    Create a Simple Linear Regression model, automatically prepending the column of ones (form matrix from two column vectors [1 x]).

    x

    the input/design m-by-1 vector

    y

    the response m-vector