case class RegressionResult(coefficients: DenseVector[Double], intercept: Double, rSquared: Double, loss: Double) extends (DenseVector[Double]) ⇒ Double with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RegressionResult
- Serializable
- Serializable
- Product
- Equals
- Function1
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
-
def
andThen[A](g: (Double) ⇒ A): (DenseVector[Double]) ⇒ A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
apply(x: DenseVector[Double]): Double
- Definition Classes
- RegressionResult → Function1
- val coefficients: DenseVector[Double]
-
def
compose[A](g: (A) ⇒ DenseVector[Double]): (A) ⇒ Double
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- val intercept: Double
- val loss: Double
- val rSquared: Double
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any