@@ -33,7 +33,6 @@ import java.util.List;
|
|||||||
* <p>
|
* <p>
|
||||||
* This class is final, meaning it cannot be subclassed, and it only contains static methods,
|
* This class is final, meaning it cannot be subclassed, and it only contains static methods,
|
||||||
* so instances of the class cannot be created.
|
* so instances of the class cannot be created.
|
||||||
* </p>
|
|
||||||
* <h2>Example usage:</h2>
|
* <h2>Example usage:</h2>
|
||||||
* <pre>
|
* <pre>
|
||||||
* {@code
|
* {@code
|
||||||
@@ -49,6 +48,12 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
public final class PercentileCalculator {
|
public final class PercentileCalculator {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Private constructor prevents from being initialised.
|
||||||
|
*/
|
||||||
|
private PercentileCalculator() {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculates the specified percentile from a list of values.
|
* Calculates the specified percentile from a list of values.
|
||||||
* <p>
|
* <p>
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ package com.onixbyte.nums.model;
|
|||||||
* <li>{@code lowerBound} - The lower bound of the dataset, typically {@code Q1 - 1.5 * IQR}.</li>
|
* <li>{@code lowerBound} - The lower bound of the dataset, typically {@code Q1 - 1.5 * IQR}.</li>
|
||||||
* <li>{@code upperBound} - The upper bound of the dataset, typically {@code Q3 + 1.5 * IQR}.</li>
|
* <li>{@code upperBound} - The upper bound of the dataset, typically {@code Q3 + 1.5 * IQR}.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* </p>
|
|
||||||
* <p>
|
* <p>
|
||||||
* Example usage:
|
* Example usage:
|
||||||
* <pre>
|
* <pre>
|
||||||
|
|||||||
+2
-2
@@ -20,12 +20,12 @@ rootProject.name = "JDevKit"
|
|||||||
include(
|
include(
|
||||||
"devkit-core",
|
"devkit-core",
|
||||||
"devkit-utils",
|
"devkit-utils",
|
||||||
"map-util-unsafe",
|
|
||||||
"guid",
|
"guid",
|
||||||
"key-pair-loader",
|
"key-pair-loader",
|
||||||
|
"map-util-unsafe",
|
||||||
|
"num4j",
|
||||||
"simple-jwt-facade",
|
"simple-jwt-facade",
|
||||||
"simple-jwt-authzero",
|
"simple-jwt-authzero",
|
||||||
"simple-jwt-spring-boot-starter",
|
"simple-jwt-spring-boot-starter",
|
||||||
"property-guard-spring-boot-starter"
|
"property-guard-spring-boot-starter"
|
||||||
)
|
)
|
||||||
include("num4j")
|
|
||||||
|
|||||||
Reference in New Issue
Block a user