Weave.jl/test/documents/gadfly_formats_test_mmd_ref.md

1.4 KiB

using Gadfly
x = range(0, stop=2π, length=200)
plot(x=x, y = sin(x), Geom.line)

sin(x) function.

cos(x) function.

julia> x = range(0, stop=2π, length=200)
200-element LinSpace{Float64}:
 0.0,0.0315738,0.0631476,0.0947214,0.126295,,6.18846,6.22004,6.25161,6.28319

julia> plot(x=x, y = sin(x), Geom.line)
Plot(...)

julia> y = 20
20

julia> plot(x=x, y = cos(x), Geom.line)
Plot(...)

x = range(0, stop=2π, length=200)
plot(x=x, y = sin(x), Geom.line)

![][figures/gadfly_formats_test_5_1.png]

[figures/gadfly_formats_test_5_1.png]: figures/gadfly_formats_test_5_1.png width=15cm

y = 20
plot(x=x, y = cos(x), Geom.line)

![][figures/gadfly_formats_test_5_2.png]

[figures/gadfly_formats_test_5_2.png]: figures/gadfly_formats_test_5_2.png width=15cm