标签: python random threshold
我有一组在区间 [a,b] 中随机分布的值。如何设置阈值 a< c< b 这个 [a,c] 的 80%值是多少?假设 a =最小值且 b =此集合的最大值。
答案 0 :(得分:3)
您要问的是数据集的第80个percentile。
How do I calculate percentiles with python/numpy?