有没有办法直接将Vegas(scala DSL for Vega-lite)渲染到png?

时间:2018-05-22 13:23:05

标签: scala vega-lite vegas-viz

我正在寻找一种方法,使用Vegas将绘图渲染到本地文件系统上的.png文件。像

这样的东西
val plot = Vegas("Country Pop")
  .withData(
    Seq(
      Map("country" -> "USA", "population" -> 314),
      Map("country" -> "UK", "population" -> 64),
      Map("country" -> "DK", "population" -> 80)
    )
  )
  .encodeX("country", Nom)
  .encodeY("population", Quant)
  .mark(Bar)

plot.missingMethodForSavingAFigure("path/to/dest.png")

不幸的是,似乎不存在我所知道的.saveFigure方法。有没有人有任何建议的替代方案?

0 个答案:

没有答案