object TempRegression extends App
The TempRegression
object performs regression on a small dataset of
temperatures from counties in Texas where the variables/factors to consider
are Latitude (x1), Elevation (x2) and Longitude (x3). The regression equation
is the following:
y = b dot x = b0 + b1*x1 + b2*x2 + b3*x3
A fit is created for both the full model and a reduce model created using backward elimination.
- See also
www.stat.ufl.edu/~winner/cases/txtemp.ppt > runMain apps.analytics.TempRegression
- Alphabetic
- By Inheritance
- TempRegression
- App
- DelayedInit
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
val
executionStart: Long
- Definition Classes
- App
- Annotations
- @deprecatedOverriding( ... , "2.11.0" )
-
def
main(args: Array[String]): Unit
- Definition Classes
- App
- Annotations
- @deprecatedOverriding( "main should not be overridden" , "2.11.0" )
- var rg: Regression
- val x: MatrixD
- val y: VectorD
- val z: VectorD
Deprecated Value Members
-
def
delayedInit(body: ⇒ Unit): Unit
- Definition Classes
- App → DelayedInit
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) the delayedInit mechanism will disappear