statsmodels.discrete.discrete_model.Poisson.cdf

Poisson.cdf(X)[source]

泊松模型累积分布函数

Parameters:
Xarray_like

X 是模型的线性预测器。 请参阅注释。

Returns:
The value of the Poisson CDF at each point.

注释

CDF定义为

\[\exp\left(-\lambda\right)\sum_{i=0}^{y}\frac{\lambda^{i}}{i!}\]

其中 \(\lambda\) 假设对数线性模型。即,

\[\ln\lambda_{i}=X\beta\]

参数X在上面的公式中是\(X\beta\)


Last update: Oct 16, 2024