本文整理了Java中org.apache.commons.math3.stat.descriptive.rank.Percentile.getPivots()
方法的一些代码示例,展示了Percentile.getPivots()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Percentile.getPivots()
方法的具体详情如下:
包路径:org.apache.commons.math3.stat.descriptive.rank.Percentile
类名称:Percentile
方法名:getPivots
[英]Get pivots which is either cached or a newly created one
[中]获取缓存或新创建的数据透视
代码示例来源:origin: org.apache.commons/commons-math3
final int[] pivotsHeap = getPivots(values);
return work.length == 0 ? Double.NaN :
estimationType.evaluate(work, pivotsHeap, p, kthSelector);
代码示例来源:origin: geogebra/geogebra
final int[] pivotsHeap = getPivots(values);
return work.length == 0 ? Double.NaN :
estimationType.evaluate(work, pivotsHeap, p, kthSelector);
代码示例来源:origin: io.virtdata/virtdata-lib-realer
final int[] pivotsHeap = getPivots(values);
return work.length == 0 ? Double.NaN :
estimationType.evaluate(work, pivotsHeap, p, kthSelector);
内容来源于网络,如有侵权,请联系作者删除!