frame.quantile (または series.quantile) を呼び出して確率のリストを提供する方法はありますか? 確率のリストと軸引数の両方を取る scipy.stats.scoreatpercentile に依存しているため、これは単にコードの省略であるように見えます。
In [10]: df = pandas.DataFrame(randn(100,10))
In [11]: df.shape
Out[11]: (100, 10)
In [12]: df.quantile().shape
Out[12]: (10,)
In [13]: df.quantile(q=array([0.1, 0.2, 0.3]))
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-13-0e8c5e9629fc> in <module>()
----> 1 df.quantile(q=array([0.1, 0.2, 0.3])
....
比較:
scipy.stats.scoreatpercentile(randn(100,10), per=[0.1, 0.2], axis=0)