GLM.predict()

statsmodels.genmod.generalized_linear_model.GLM.predict

GLM.predict(params, exog=None, exposure=None, offset=None, linear=False) [source]

Return predicted values for a design matrix

Parameters:

params : array-like

Parameters / coefficients of a GLM.

exog : array-like, optional

Design / exogenous data. Is exog is None, model exog is used.

exposure : array-like, optional

Exposure time values, only can be used with the log link function. See notes for details.

offset : array-like, optional

Offset values. See notes for details.

linear : bool

If True, returns the linear predicted values. If False, returns the value of the inverse of the model’s link function at the linear predicted values.

Returns:

An array of fitted values

Notes

Any exposure and offset provided here take precedence over the exposure and offset used in the model fit. If exog is passed as an argument here, then any exposure and offset values in the fit will be ignored.

Exposure values must be strictly positive.

© 2009–2012 Statsmodels Developers
© 2006–2008 Scipy Developers
© 2006 Jonathan E. Taylor
Licensed under the 3-clause BSD License.
http://www.statsmodels.org/stable/generated/statsmodels.genmod.generalized_linear_model.GLM.predict.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部