gpt4 book ai didi

vega - 如何在 vega-lite 中添加引用线?

转载 作者:行者123 更新时间:2023-12-05 04:12:21 25 4
gpt4 key购买 nike

我有一个时间序列图(简单的折线图),我想在图中添加一条或多条引用线,以表示边界(类似于 SPC 图表,最小值、最大值和平均值)。

这在 Vega-Lite 中可能吗?

谢谢。

我的图表的链接: EGV data from 5 different sensors for one day

最佳答案

不幸的是还没有。但我们正在开发支持分层的 Vega-Lite 2.0。请参阅我们的研究论文 http://idl.cs.washington.edu/papers/vega-lite/了解详情。

我们有初步的(没有记录并且可能会在 Vega-Lite 2 中中断)对分层的支持。

{
"data": {
"values": [
{"x": 1,"y": 2},
{"x": 2,"y": 4},
{"x": 3,"y": 5},
{"x": 4,"y": 3},
{"x": 5,"y": 4}
]
},
"layers": [
{
"encoding": {
"x": {"type": "ordinal","field": "x"},
"y": {"type": "quantitative","field": "y"}
},
"mark": "line",
"config": {"mark": {"color": "#1f77b4"}}
},
{
"encoding": {
"y": {"type": "quantitative","field": "y", "aggregate": "mean"}
},
"mark": "rule",
"config": {"mark": {"color": "#ff7f0e"}}
}
]
}

chart

关于vega - 如何在 vega-lite 中添加引用线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40714237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com