散点图的 Spotfire 自定义表达式

发布于 2025-01-10 17:20:43 字数 257 浏览 1 评论 0原文

我有这个数据表:

| Name | Val | Month|
| -----| ----| -----|
| A    | 3   | Jan  |
| B    | 2   | Jan  |
| A    | 1   | Feb  |
| B    | 4   | Feb  |

我想要一个散点图,通过将所有 A.Vals 放在 Y 轴上并将所有 B.vals 放在 X 轴上来比较 A 的值与 B 的值。 我可以使用自定义表达式吗?

I have this data table:

| Name | Val | Month|
| -----| ----| -----|
| A    | 3   | Jan  |
| B    | 2   | Jan  |
| A    | 1   | Feb  |
| B    | 4   | Feb  |

and I'd like a scatter plot comparing A's values to B's values by putting all A.Vals on the Y axis and all B.vals on the X axis.
Is there a custom expression I could use for that?

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

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

发布评论

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

评论(1

感情废物 2025-01-17 17:20:44

我认为您不能按原样使用表格,因为您会尝试在 X 轴和 Y 轴上绘制不同的行。最简单的事情是对表进行数据透视,例如添加此转换:

行标识符:月份

列标题:名称

值和聚合方法:无(Val)

传输列:无

您最终会得到一个包含月份、(Val) 列的表) 对于 A,(Val) 对于 B,您可以简单地绘制。

I don't think you can with the table as it is, because you would be trying to plot different rows on the X and Y axis. The simplest thing would be to pivot your table, for example like adding this transformation:

Row Identifiers: Month

Column Titles: Name

Values and aggregation methods: None(Val)

Transfer columns: None

You end up with a table with columns Month, (Val) for A, (Val) for B which you can simply plot.

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