摘要: # 计算K百分位数import numpy as npx = np.array([-35, 10, 20, 30, 40, 50, 60, 100])k = 25xk = np.percentile(x, k, interpolation='linear')Nx = x.shape[0]indice 阅读全文
posted @ 2021-03-17 14:57 tevien 阅读(259) 评论(0) 推荐(0)