我只想在一个图形中比较时间序列数据。我将几个数据集添加到同一个图并绘制它 - 只显示一个数据集。文档丢失,现有问题无用..
问题:为什么只表示一个数据集?还有,为什么它的标题不用来创造传奇?
我的代码(狙击):
//first, create terminal to write png files (not shown)
..
//create the three data sets (just shown for first data set here)
double[][] original = combinedSequence.getOriginalValues();
AbstractPlot originalPlot = new DataSetPlot(original);
originalPlot.setTitle("'original'");
..
//add the three data set plots
p.addPlot(originalPlot);
p.addPlot(offsetPlot);
p.addPlot(functionPlot);
//plot graph
p.newGraph();
p.plot();