Object

scalaglm

Utils

Related Doc: package scalaglm

Permalink

object Utils

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def aa2bdm(a: Array[Array[Double]]): DenseMatrix[Double]

    Permalink

    Array[Array] to Breeze DenseMatrix conversion

    Array[Array] to Breeze DenseMatrix conversion

    Useful for unpacking matrices which have come back to Scala from R via rscala

    a

    A matrix represented as an array of arrays (row-major)

    returns

    A Breeze DenseMatrix representation of the matrix

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def backSolve(A: DenseMatrix[Double], Y: DenseMatrix[Double]): DenseMatrix[Double]

    Permalink

    Backsolve an upper-triangular linear system with multiple RHSs

    Backsolve an upper-triangular linear system with multiple RHSs

    A

    An upper-triangular matrix

    Y

    A matrix with columns corresponding to RHSs

    returns

    Matrix of solutions, X, to the linear system A X = Y

  7. def backSolve(A: DenseMatrix[Double], y: DenseVector[Double]): DenseVector[Double]

    Permalink

    Backsolve an upper-triangular linear system with a single RHS

    Backsolve an upper-triangular linear system with a single RHS

    A

    An upper-triangular matrix

    y

    A single vector RHS

    returns

    The solution, x, of the linear system A x = y

  8. def bdm2aa(m: DenseMatrix[Double]): Array[Array[Double]]

    Permalink

    Breeze DenseMatrix to Array[Array] conversion

    Breeze DenseMatrix to Array[Array] conversion

    Useful for sending matrices to R via rscala

    m

    A Breeze DenseMatrix

    returns

    The matrix as an array of arrays (row-major)

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def fCDF(x: Double, d1: Double, d2: Double): Double

    Permalink

    The CDF of the f-distribution

  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def forwardSolve(A: DenseMatrix[Double], y: DenseVector[Double]): DenseVector[Double]

    Permalink

    Forward solve a lower-triangular linear system with a single RHS

    Forward solve a lower-triangular linear system with a single RHS

    A

    A lower-triangular matrix

    y

    A single vector RHS

    returns

    The solution, x, of the linear system A x = y

  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def pairs(mat: DenseMatrix[Double]): Figure

    Permalink

    pairs plot (for unlabeled variables)

    pairs plot (for unlabeled variables)

    mat

    a matrix with variables in columns and observations in rows

    returns

    The breeze-viz Figure object

  22. def pairs(mat: DenseMatrix[Double], names: Seq[String]): Figure

    Permalink

    pairs plot

    pairs plot

    mat

    a matrix with variables in columns and observations in rows

    names

    a sequence of variable names

    returns

    The breeze-viz Figure object

  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def tCDF(t: Double, df: Double): Double

    Permalink

    The CDF of the t-distribution

  25. def time[A](f: ⇒ A): A

    Permalink

    A very simple function for timing computations - not for general use

  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped