标签: python matplotlib memory plot ecdf
我需要绘制一些数据的ECDF。我发现我可以做到
ecdf = sm.distributions.ECDF(sample) x = np.linspace(min(sample), max(sample)) y = ecdf(x) plt.step(x, y)
使用matplotlib和statsmodels Python软件包。
matplotlib
statsmodels
我的问题是变量sample包含大约1 GB的数据,我无法一次将其全部加载到内存中。
sample
在较小的切片中加载数据时如何绘制ECDF?