LinearModel#
- class pyspark.mllib.regression.LinearModel(weights, intercept)[source]#
 A linear model that has a vector of coefficients and an intercept.
New in version 0.9.0.
- Parameters
 - weights
pyspark.mllib.linalg.Vector Weights computed for every feature.
- interceptfloat
 Intercept computed for this model.
- weights
 
Attributes
Intercept computed for this model.
Weights computed for every feature.
Attributes Documentation
- intercept#
 Intercept computed for this model.
New in version 1.0.0.
- weights#
 Weights computed for every feature.
New in version 1.0.0.