using Gadfly
myplot = plot(x = 1:10, y = 2:11, Geom.line)
draw(PNG("myplot.png", 3inch, 3inch), myplot)
I just want to make a png file without displaying anything in browsers. (Why? For example, I work on a remote server.) How can I stop a function plotfrom displaying a shape?
source
share