Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 378 Bytes

output.md

File metadata and controls

15 lines (11 loc) · 378 Bytes

Output

Saving to a file

Use the save (reexported from Vega.jl) function from the FileIO.jl package to save plots.

For example, to save a plot named p, you can use the following type of code:

p |> save("figure.png")
p |> save("figure.svg")
p |> save("figure.pdf")
p |> save("figure.eps")
p |> save("figure.vega")