散点图的 Spotfire 自定义表达式
我有这个数据表:
| 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您不能按原样使用表格,因为您会尝试在 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.