Packages

object MV_Regression extends Error

The MV_Regression companion object provides factory apply functions and a testing method.

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

Value Members

  1. def apply(xy: MatriD, fname: Strings = null, hparam: HyperParameter = null, technique: RegTechnique.RegTechnique = QR): MV_Regression

    Create a MV_Regression object from a combined data matrix.

    Create a MV_Regression object from a combined data matrix. The last column is assumed to be the response column.

    xy

    the combined data matrix (predictors and responses)

    fname

    the feature/variable names

    hparam

    the hyper-parameters

    technique

    the technique used to solve for b in x.t*x*b = x.t*y

  2. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  3. def test(x: MatriD, y: MatriD, z: VectoD, fname: Strings = null): Unit

    Test the various regression techniques.

    Test the various regression techniques.

    x

    the data/input matrix

    y

    the response/output matrix

    z

    a vector to predict

    fname

    the names of features/variable