Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for percentile90 (0.09 seconds)

  1. android/guava/src/com/google/common/math/Quantiles.java

     *
     * <p>To compute the 99th percentile:
     *
     * {@snippet :
     * double myPercentile99 = percentiles().index(99).compute(myDataset);
     * }
     *
     * where {@link #percentiles()} has been statically imported.
     *
     * <p>To compute median and the 90th and 99th percentiles:
     *
     * {@snippet :
     * Map<Integer, Double> myPercentiles = percentiles().indexes(50, 90, 99).compute(myDataset);
     * }
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 30.1K bytes
    - Click Count (0)
Back to Top