Packages

object SimplerRegression extends Error

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

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

Value Members

  1. def apply(x: VectoD, y: VectoD, fname: Strings, hparam: HyperParameter): SimplerRegression

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

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

    x

    the data/input m-by-1 vector

    y

    the response/output m-vector

    hparam

    the hyper-parameters (currently has none)

  2. def apply(xy: MatriD, fname: Strings = null, hparam: HyperParameter = null): SimplerRegression

    Create a Simpler Linear Regression model from a combined data matrix.

    Create a Simpler Linear Regression model from a combined data matrix. Take the first column for the predictor and the last column for the response.

    xy

    the combined data matrix

    hparam

    the hyper-parameters (currently has none)

  3. val drp: (Null, Null)
  4. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error