在JupyterLab中禁用了JavaScript输出

时间:2019-01-30 14:28:27

标签: javascript jupyter-lab

尽管Google在搜索标题时有很多话要说,但我找不到任何可以帮助我的东西...

在Jupyter笔记本中运行以下代码时

from vega import VegaLite

VegaLite(
{
  "$schema": "https://vega.github.io/schema/vega-lite/v3.json",
  "description": "A simple bar chart with embedded data.",
  "width": 360,
  "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"},
    "tooltip": {"field": "b", "type": "quantitative"}
  }
})

我收到错误消息

JavaScript output is disabled in JupyterLab

1 个答案:

答案 0 :(得分:1)

您必须更改为“帮助启动经典笔记本”

enter image description here