在Vega中除以数组的特定元素

时间:2019-10-13 10:15:07

标签: vega

我需要在Vega中构造一个类似于以下示例的图形。但是我需要对其进行修改,以使Y轴除以数组的第一个值,即values [0] [b]。如何修改下面的代码以获得预期的结果?

{
  "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
  "description": "A simple bar chart with embedded data.",
  "data": {
     "values": [
        {"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43},
        {"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53},
        {"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52}
      ]
    },

  "mark": "bar",
  "encoding": {
    "x": {"field": "a", "type": "ordinal"},
    "y": {"field": "b", "type": "quantitative"}// here I need to divide each point in "y" by values[0][b]
   }
  }

可以帮我吗?

0 个答案:

没有答案