Python中的StatsModel:在横轴上测量什么?

时间:2018-04-24 00:44:35

标签: python matplotlib statsmodels

我运行以下Python代码来生成核心密度的附图,水平轴从0500。鉴于代码在-2.1572.830之间生成100个观察值,我希望水平轴显示-33之间的值。在地平线出租车上实际测量的是什么?

import numpy as np
import statsmodels.api as sm
import matplotlib.pyplot as plt

np.random.seed(1234567)
k = np.random.normal(0, 1, 100)
dens = sm.nonparametric.KDEUnivariate(k)
dens.fit()
plt.plot(dens.density)

enter image description here

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

更换

plt.plot(dens.density)

plt.plot(dens.support, dens.density)

给出了我预期的以下结果。

enter image description here