case class Stats(y_: VectoD, lags: Int) extends Product with Serializable
The Stats
case class is used to hold basic statistical information:
mean, variance, auto-covariance, and auto-correlation.
Note gamma0 (biased) does not equal the sample variance (unbiased)
- y_
the response vector (time-series data) for the training/full dataset
- lags
the maximum number of lags
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Stats
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
Stats(y_: VectoD, lags: Int)
- y_
the response vector (time-series data) for the training/full dataset
- lags
the maximum number of lags