[julia-users] recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread Jon Norberg
using Gadfly L=Layer[] push!(L,layer(x=1:10,y=rand(10),Geom.line)[]) push!(L,layer(x=1:10,y=rand(10),Geom.line)[]) push!(L,layer(x=1:10,y=rand(10),Geom.line)[]) plot(L) Only awkward thing is the empty square bracket for some reason is needed Styling colours using Themes (see gadfly

[julia-users] recommended graphics packages for multiple curves on a single canvas

2016-01-31 Thread Michael Landis
Can anyone recommend a graphics capable of plotting multiple curves on a single canvas. Python's pyplot/matplotlib multi-curve capabilities appear to be unavailable within Julia (maybe I'm doing it wrong).