public class Plots extends Object
| Modifier and Type | Method and Description |
|---|---|
static void |
plot(DataSet dataSet)
Plot a data set.
|
static void |
plot(DataSet firstDataSet,
DataSet secondDataSet)
Plot the first data set against the second data set.
|
static void |
plot(TimeSeries timeSeries)
Plot a time series, connecting the observation times to the measurements.
|
static void |
plot(TimeSeries timeSeries,
String title)
Plot a time series, connecting the observation times to the measurements.
|
static void |
plot(TimeSeries timeSeries,
String title,
String seriesName)
Plot a time series, connecting the observation times to the measurements.
|
static void |
plotAcf(TimeSeries timeSeries,
int k)
Plot the sample autocorrelations of the given time series up to the given lag.
|
public static void plot(TimeSeries timeSeries)
timeSeries - the series to plot.public static void plot(TimeSeries timeSeries, String title)
timeSeries - the series to plot.title - the title of the plot.public static void plot(TimeSeries timeSeries, String title, String seriesName)
timeSeries - the series to plot.title - the title of the plot.seriesName - the name of the series to display.public static void plotAcf(TimeSeries timeSeries, int k)
timeSeries - the series to plot.k - the maximum lag to include in the acf plot.public static void plot(DataSet dataSet)
dataSet - the data set to plot.public static void plot(DataSet firstDataSet, DataSet secondDataSet)
firstDataSet - the data set to plot on the x-axis.secondDataSet - the data set to plot against the first data set.