Packages

object RoundRegression

The RoundRegression companion object provides a factory method.

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

Value Members

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

    Create a RoundRegression object using a combined matrix.

    Create a RoundRegression object using a combined matrix.

    xy

    the combined data matrix and response vector

    fname

    the feature/variable names

    technique

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

  2. def apply(x: MatriD, y: VectoI, fname: Strings, technique: RegTechnique.RegTechnique): RoundRegression

    Create a RoundRegression object for an integer response vector.

    Create a RoundRegression object for an integer response vector.

    x

    the data/input matrix

    y

    the integer response/output vector

    fname

    the feature/variable names

    technique

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