我正在使用三角形和矩形等几何组件创建数学问题,并认为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.")