This commit is contained in:
Thomas Breloff 2015-09-10 15:48:38 -04:00
parent 301a466bee
commit 1139a4f0c1

View File

@ -35,7 +35,7 @@ Do a plot in Qwt, then save a png:
```
plot(rand(10,2); marker = :rect)
savepng(ans, Plots.IMG_DIR * "qwt1.png")
savepng(Plots.IMG_DIR * "qwt1.png")
```
which saves:
@ -48,7 +48,7 @@ Do a plot in Gadfly, then save a png:
```
plotter!(:gadfly) # switches the backend to Gadfly
plot(rand(10,2); marker = :rect)
savepng(ans, Plots.IMG_DIR * "gadfly1.png")
savepng(Plots.IMG_DIR * "gadfly1.png")
```
which saves: