case class PredictLm(mod: Lm, newX: DenseMatrix[Double]) extends Predict with Product with Serializable
Prediction from a fitted linear (Lm) model
- mod
fitted linear model
- newX
covariate matrix for predictions
- returns
An object of type PredictLm with several useful attributes, including .fitted and .se
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PredictLm
- Serializable
- Serializable
- Product
- Equals
- Predict
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
val
fitted: DenseVector[Double]
fitted values
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val mod: Lm
-
val
nX: DenseMatrix[Double]
New covariate matrix (including intercept, if required)
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val newX: DenseMatrix[Double]
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
lazy val
se: DenseVector[Double]
standard errors for the predictions
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
lazy val
xrti: DenseMatrix[Double]
for internal use (probably should be marked private)