--- weave_options: out_path: gadfly --- <>= using Gadfly x = range(0, stop =2π, step=0.05) plot(x=x, y = sin.(x), Geom.line) @ <>= plot(x=x, y = cos.(x), Geom.line) @ <>= plot(x=x, y = cos.(2x), Geom.line) @