假设我有以下观察结果:
1,2,3,4,5,6,7,100
现在我想制作一个情节如何按百分比分配观察结果:
我的问题:
由于
答案 0 :(得分:2)
我不确定这样的情节会被调用(编辑:它似乎被称为累积频率图,或类似的东西)。但是,这很容易做到。
基本上,如果您对数据进行了排序,那么观察百分比< =索引i
的值仅为(i+1)/len(data)
。使用满足此条件的范围创建x数组很容易。所以,例如:
from matplotlib import pylab
import numpy as np
a = np.array([1,2,3,4,5,6,7,100])
pylab.plot( np.arange(1,len(a)+1)/len(a), a, # This part is required
'-', drawstyle='steps' ) # This part is stylistic
给出:
如果您更喜欢x轴,请从0到100而不是0到
另请注意,这适用于您的示例数据,因为它已经排序。如果您使用未排序的数据,请先使用np.sort
对其进行排序,例如:
c = np.random.randn(100)
c.sort()
pylab.plot( np.arange(1,len(c)+1)/len(c), c, '-', drawstyle='steps' )