使用 iReport 绘制时间序列的平均线
如何绘制时间序列的平均线?
how can i draw the average line in a time series?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何绘制时间序列的平均线?
how can i draw the average line in a time series?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
解决方案
有几种方法可以做到这一点:
在线分析
执行以下操作的缺点在线分析是 JasperReports 一次绘制一个值。您编写的任何定制程序都必须根据过去的数据点计算趋势,而不是最后对所有数据点进行分析。这将导致数据线轻微倾斜。
集成统计包
使用统计包的缺点是您必须找到一种将其与数据库集成的方法。 (您还必须学习相应的统计功能才能执行分析。)
第三方工具
这里的缺点是您可能需要为产品或支持付费。集成可能是最简单的。
推荐的解决方案
如果您有 PostgreSQL 数据库,我建议安装 PL/R。使用R进行聚合数据分析,然后将结果发送回JasperReports以形成时间序列图表。
你要求做的事情可能会非常复杂。
Solutions
There are a few ways to do this:
In-line Analysis
The disadvantage to performing the analysis in-line is that JasperReports plots a single value at a time. Any customizer you write will have to calculate the trend based on the past data points, rather than an analysis on all the data points at the end. This will cause a slight skew to the data line.
Integrated Stats Package
The disadvantage to using a statistics package is that you would have to find a way to integrate it with your database. (You would also have to learn the corresponding statistical functions to perform the analysis.)
Third-party Tool
The disadvantage here is that you might have to pay for the product, or support. The integration is likely the easiest.
Recommended Solution
If you have a PostgreSQL database, I would recommend installing PL/R. Use R to perform the aggregate data analysis and then send the result back to JasperReports for the time series chart.
What you are asking to do can be quite involved.