Vega 变换样本

Vega transformation sample

来自 vega 转换的示例代码无效。

我没有得到预期的结果。

你能帮我吗运行 vega 编辑器中的这个例子?

[
  {"foo": {"a": 5, "b": "abc"}, "bar": 0},
  {"foo": {"a": 6, "b": "def"}, "bar": 1},
  {"foo": {"a": 7, "b": "ghi"}, "bar": 2}
]

要将“bar”字段连同“a”和“b”子字段提取到新对象中,请使用转换:

{
  "type": "project",
  "fields": ["bar", "foo.a", "foo.b"],
  "as": ["bar", "a", "b"]
}

这会产生以下输出:

[
  {"bar":0, "a":5, "b":"abc"},
  {"bar":1, "a":6, "b":"def"},
  {"bar":2, "a":7, "b":"ghi"}
]

好的,我使用 editor 中的第一个示例(条形图)为您演示了转换。这是您可以在编辑器中粘贴的修改后的代码:

{
  "$schema": "https://vega.github.io/schema/vega/v5.json",
  "description": "A basic bar chart example, with value labels shown upon mouse hover.",
  "width": 400,
  "height": 200,
  "padding": 5,

  "data": [
    {
      "name": "table",
      "values": [
        {"foo": {"a": 5, "b": "abc"}, "bar": 0},
        {"foo": {"a": 6, "b": "def"}, "bar": 1},
        {"foo": {"a": 7, "b": "ghi"}, "bar": 2}
    ], 

    "transform": [
        {
          "type": "project",
          "fields": ["bar", "foo.a", "foo.b"],
          "as": ["bar", "a", "b"]
        }
      ]
    }    
  ],

  "signals": [
    {
      "name": "tooltip",
      "value": {},
      "on": [
        {"events": "rect:mouseover", "update": "datum"},
        {"events": "rect:mouseout",  "update": "{}"}
      ]
    }
  ],

  "scales": [
    {
      "name": "xscale",
      "type": "band",
      "domain": {"data": "table", "field": "bar"},
      "range": "width",
      "padding": 0.05,
      "round": true
    },
    {
      "name": "yscale",
      "domain": {"data": "table", "field": "a"},
      "nice": true,
      "range": "height"
    }
  ],

  "axes": [
    { "orient": "bottom", "scale": "xscale" },
    { "orient": "left", "scale": "yscale" }
  ],

  "marks": [
    {
      "type": "rect",
      "from": {"data":"table"},
      "encode": {
        "enter": {
          "x": {"scale": "xscale", "field": "bar"},
          "width": {"scale": "xscale", "band": 1},
          "y": {"scale": "yscale", "field": "a"},
          "y2": {"scale": "yscale", "value": 0}
        },
        "update": {
          "fill": {"value": "steelblue"}
        },
        "hover": {
          "fill": {"value": "red"}
        }
      }
    },
    {
      "type": "text",
      "encode": {
        "enter": {
          "align": {"value": "center"},
          "baseline": {"value": "bottom"},
          "fill": {"value": "#333"}
        },
        "update": {
          "x": {"scale": "xscale", "signal": "tooltip.bar", "band": 0.5},
          "y": {"scale": "yscale", "signal": "tooltip.a", "offset": -2},
          "text": {"signal": "tooltip.b"},
          "fillOpacity": [
            {"test": "datum === tooltip", "value": 0},
            {"value": 1}
          ]
        }
      }
    }
  ]
}

这是预期的结果:

正如您在编辑器的数据查看器中看到的那样,“bar”、“a”和“b”具有正确的值,并且我更改了条形图,因此它使用这些值来显示条形图,适当的高度,以及将鼠标悬停在栏上时的工具提示。