Java org.jfree.data.time MovingAverage fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.time MovingAverage fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

TimeSeriesCollectioncreateMovingAverage(TimeSeriesCollection source, String suffix, int periodCount, int skip)
Creates a new TimeSeriesCollection containing a moving average series for each series in the source collection.
TimeSeriescreateMovingAverage(TimeSeries source, String name, int periodCount, int skip)
Creates a new TimeSeries containing moving average values for the given series.
XYDatasetcreateMovingAverage(XYDataset source, String suffix, long period, long skip)
Creates a new XYDataset containing the moving averages of each series in the source dataset.
XYDatasetcreateMovingAverage(XYDataset source, String suffix, double period, double skip)
Creates a new XYDataset containing the moving averages of each series in the source dataset.
TimeSeriescreatePointMovingAverage(TimeSeries source, String name, int pointCount)
Creates a new TimeSeries containing moving average values for the given series, calculated by number of points (irrespective of the 'age' of those points).