Java org.jfree.data.statistics Statistics fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.statistics Statistics fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.statistics Statistics.

The text is from its open source code.

Method

doublecalculateMean(Number[] values, boolean includeNullAndNaN)
Returns the mean of an array of numbers.
doublecalculateMean(Collection values, boolean includeNullAndNaN)
Returns the mean of a collection of Number objects.
doublecalculateMean(Number[] values)
Returns the mean of an array of numbers.
doublecalculateMean(Collection values)
Returns the mean of a collection of Number objects.
doublecalculateMedian(List values, boolean copyAndSort)
Calculates the median for a list of values ( Number objects).
doublecalculateMedian(List values, int start, int end)
Calculates the median for a sublist within a list of values ( Number objects).
doublegetStdDev(Number[] data)
Returns the standard deviation of a set of numbers.