Java org.jfree.data.general DatasetUtilities fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.general DatasetUtilities fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

doublecalculatePieDatasetTotal(PieDataset dataset)
Calculates the total of all the values in a PieDataset .
CategoryDatasetcreateCategoryDataset(String rowKeyPrefix, String columnKeyPrefix, double[][] data)
Creates a CategoryDataset that contains a copy of the data in an array (instances of Double are created to represent the data items).
CategoryDatasetcreateCategoryDataset(String rowKeyPrefix, String columnKeyPrefix, Number[][] data)
Creates a CategoryDataset that contains a copy of the data in an array.
CategoryDatasetcreateCategoryDataset(Comparable[] rowKeys, Comparable[] columnKeys, double[][] data)
Creates a CategoryDataset that contains a copy of the data in an array (instances of Double are created to represent the data items).
CategoryDatasetcreateCategoryDataset(Comparable rowKey, KeyedValues rowData)
Creates a CategoryDataset by copying the data from the supplied KeyedValues instance.
PieDatasetcreateConsolidatedPieDataset(PieDataset source, Comparable key, double minimumPercent, int minItems)
Creates a new pie dataset based on the supplied dataset, but modified by aggregating all the low value items (those whose value is lower than the percentThreshold) into a single item.
PieDatasetcreatePieDatasetForColumn(CategoryDataset dataset, Comparable columnKey)
Creates a pie dataset from a table dataset by taking all the values for a single column.
PieDatasetcreatePieDatasetForColumn(CategoryDataset dataset, int column)
Creates a pie dataset from a CategoryDataset by taking all the values for a single column.
PieDatasetcreatePieDatasetForRow(CategoryDataset dataset, Comparable rowKey)
Creates a pie dataset from a table dataset by taking all the values for a single row.
PieDatasetcreatePieDatasetForRow(CategoryDataset dataset, int row)
Creates a pie dataset from a table dataset by taking all the values for a single row.
RangefindDomainBounds(XYDataset dataset, boolean includeInterval)
Returns the range of values in the domain (x-values) of a dataset.
RangefindDomainBounds(XYDataset dataset)
Returns the range of values in the domain (x-values) of a dataset.
RangefindDomainBounds(XYDataset dataset, List visibleSeriesKeys, boolean includeInterval)
Returns the bounds of the x-values in the specified dataset taking into account only the visible series and including any x-interval if requested.
NumberfindMaximumDomainValue(XYDataset dataset)
Returns the maximum domain value for the specified dataset.
NumberfindMaximumRangeValue(CategoryDataset dataset)
Returns the maximum range value for the specified dataset.
NumberfindMaximumRangeValue(XYDataset dataset)
Returns the maximum range value for the specified dataset.
NumberfindMinimumRangeValue(CategoryDataset dataset)
Returns the minimum range value for the specified dataset.
NumberfindMinimumRangeValue(XYDataset dataset)
Returns the minimum range value for the specified dataset.
RangefindRangeBounds(CategoryDataset dataset, boolean includeInterval)
Returns the range of values in the range for the dataset.
RangefindRangeBounds(XYDataset dataset, boolean includeInterval)
Returns the range of values in the range for the dataset.
RangefindRangeBounds(CategoryDataset dataset)
Returns the range of values in the range for the dataset.
RangefindRangeBounds(XYDataset dataset)
Returns the range of values in the range for the dataset.
RangefindStackedRangeBounds(CategoryDataset dataset)
Returns the minimum and maximum values for the dataset's range (y-values), assuming that the series in one category are stacked.
RangefindStackedRangeBounds(TableXYDataset dataset)
Returns the minimum and maximum values for the dataset's range, assuming that the series are stacked.
doublefindYValue(XYDataset dataset, int series, double x)
Returns the interpolated value of y that corresponds to the specified x-value in the given series.
booleanisEmptyOrNull(PieDataset dataset)
Returns true if the dataset is empty (or null), and false otherwise.
booleanisEmptyOrNull(CategoryDataset dataset)
Returns true if the dataset is empty (or null), and false otherwise.
booleanisEmptyOrNull(XYDataset dataset)
Returns true if the dataset is empty (or null), and false otherwise.
RangeiterateDomainBounds(XYDataset dataset, boolean includeInterval)
Iterates over the items in an XYDataset to find the range of x-values.
XYDatasetsampleFunction2D(Function2D f, double start, double end, int samples, Comparable seriesKey)
Creates an XYDataset by sampling the specified function over a fixed range.
XYSeriessampleFunction2DToSeries(Function2D f, double start, double end, int samples, Comparable seriesKey)
Creates an XYSeries by sampling the specified function over a fixed range.