我正在尝试TimeSeries
在 Java 中使用 绘制数据JFreeChart
,但是数据由作为调用输出的双精度组成Renjin
。添加数据的代码TimeSeries
如下:
for (int i=0; i<series2Values.length; i++) {
if (!Double.isNaN(series2Values[i])) {
series2.add(new Hour((int)times[i], new Day()), series2Values[i]);
} else {
series2.add(new Hour((int)times[i], new Day()), null);
}
}
final TimeSeriesCollection dataset2 = new TimeSeriesCollection();
dataset2.addSeries(series2);
JFreeChart chart2 = ChartFactory.createTimeSeriesChart(title, "Time (Hour)", "Vehicles Parked", dataset2, true, true, false);
ChartFrame frame2 = new ChartFrame(title, chart2, false);
frame2.pack();
frame2.setIconImage(img.getImage());
frame2.setVisible(true);
问题是,每当绘制数据时,X 轴上的时间都以 24 小时军用时间显示,如果time[]
数组包含任何重复值,SeriesException
则会抛出以下内容:
Exception in thread "AWT-EventQueue-0" org.jfree.data.general.SeriesException: You are attempting to add an observation for the time period [6,12/7/2016] but the series already contains an observation for that time period. Duplicates are not permitted. Try using the addOrUpdate() method.
Exception 推荐的addOrUpdate()
方法只会覆盖 12 小时前该时间的第一个数据点,而不是创建一个新数据点。我想改为以 12 小时格式显示数据,并显示 AM 和 PM。
有没有一种方便的方法来做到这一点JFreeChart
,或者更改代码更方便,以便我的调用Renjin
返回格式化的东西,而不仅仅是 1 到 24 之间的普通整数?(例如已经格式化的时间字符串)?