Packages

object SimplerRegression

The SimplerRegression 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. SimplerRegression
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    Create a Simpler Linear Regression model, automatically creating a a design/data matrix from the vector 'x'.

    Create a Simpler Linear Regression model, automatically creating a a design/data matrix from the vector 'x'.

    x

    the input/design m-by-1 vector

    y

    the response m-vector