public class Statistics extends Object
| Modifier and Type | Method and Description |
|---|---|
static double |
maximum(String values)
Returns the maximum of the values of the given string.
|
static double |
mean(String values)
Returns the mean of the values of the given string.
|
static double |
median(String values)
Returns the median of the values of the given string.
|
static double |
minimum(String values)
Returns the minimum of the values of the given string.
|
static double |
standardDeviation(String values)
Returns the standard deviation of the values of the given string.
|
public static double minimum(String values)
values - a string of values.public static double maximum(String values)
values - a string of values.public static double mean(String values)
values - a string of values.public static double median(String values)
values - a string of values.public static double standardDeviation(String values)
values - a string of values.