使用 iReport 绘制时间序列的平均线

发布于 2024-10-19 06:14:29 字数 20 浏览 2 评论 0原文

如何绘制时间序列的平均线?

how can i draw the average line in a time series?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

涙—继续流 2024-10-26 06:14:29

解决方案

有几种方法可以做到这一点:

在线分析

执行以下操作的缺点在线分析是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文