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
weightspyspark.mllib.linalg.Vector

Weights computed for every feature.

interceptfloat

Intercept computed for this model.

Attributes

intercept

Intercept computed for this model.

weights

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.