如果有一个数a,我想知道a在数组S中的百分位数是多少?
反过来比较容易,就可以用numpy的percentile,比如
a = np.percentile(S, 10)
如果我已知了S和a,怎么求这个10呢?
1个回答
numpy没有这个功能,scipy可以。scipy.stats.percentileofscore(data, score)
比如求50在S中的百分位
>>> from scipy import stats
>>> S = range(200)
>>> stats.percentileofscore(S, 50)
25.5
反过来,求S中第20百分位可以
>>> stats.scoreatpercentile(S, 20)
39.800000000000004