如何设置随机数据的阈值

时间:2014-09-09 13:15:17

标签: python random threshold

我有一组在区间 [a,b] 中随机分布的值。如何设置阈值 a< c< b 这个 [a,c] 80%值是多少?假设 a =最小值且 b =此集合的最大值。

1 个答案:

答案 0 :(得分:3)

您要问的是数据集的第80个percentile

How do I calculate percentiles with python/numpy?

中有一些代码建议(包括NumPy / SciPy和纯Python)