在Julia Static中使用plotly后端制作Plots

时间:2018-04-04 19:41:54

标签: julia plots.jl

我使用三角形和矩形等几何组件创建数学问题,并认为plotly将是一个很好的轻量级机制来创建这些图。但我需要这些图是静态的(非交互式)。我假设我可以将它们保存为PNGs。我希望在浏览器中以交互方式生成它们,以使内容更难被盗用。

using Plots
x = 1:10; y = rand(10,2) # 2 columns means two lines
plotly() # Set the backend to Plotly
plot(x,y,title="This is my static plot.") 

1 个答案:

答案 0 :(得分:0)

想想我想出来了。

using Plots
x = 1:10; y = rand(10,2) # 2 columns means two lines
plotly() # Set the backend to Plotly
z = plot(x,y,title="This is my static plot.") 

function saveHTML(x, file; attributes=[]) 
  savefig(x , file)

  for i in attributes 
    s = replace(readstring(file), ");", ",$i);")
  end

  open(file, "w") do f
    write(f, s)
  end
end

saveHTML(z , "Z:/Temp/z.html", attributes="{staticPlot: true}")

有点hacky但是将staticPlot: true属性添加到函数的末尾。