Packages

object ANCOVA extends Error

The ANCOVA companion object provides helper functions.

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

Value Members

  1. def dummyVar(t: VectoI, shf: VectoI = shift, tmx: VectoI = tmax): VectoD

    Assign values for dummy variables based on a single categorical/treatment vector 't'.

    Assign values for dummy variables based on a single categorical/treatment vector 't'.

    t

    the categorical/treatment vector

    tmx

    the maximum vector categorical/treatment after shifting

    See also

    Variable Note: To maintain consistency Variable is the only place where values for dummy variables should be set

  2. def dummyVars(t: MatriI): MatriD

    Assign values for the dummy variables based on the categorical/treatment vector 't'.

    Assign values for the dummy variables based on the categorical/treatment vector 't'.

    t

    the categorical/treatment level matrix

    See also

    Variable Note: To maintain consistency Variable is the only place where values for dummy variables should be set

  3. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  4. def get_shift_tmax: (VectorI, VectorI)

    Return the shift in categorical/treatment variables to make tihem start at zero as well as the maximum values after shifting.

    Return the shift in categorical/treatment variables to make tihem start at zero as well as the maximum values after shifting. Must call 'dummyVars' first.