Weave.jl/examples/gadfly_sample.mdw

25 lines
338 B
Plaintext
Raw Normal View History

2016-04-20 20:01:14 +02:00
% Intro to Weave.jl with Gadfly
% Matti Pastell
% 20th April 2016
2016-04-20 20:01:14 +02:00
```julia
using Weave
weave(Pkg.dir("Weave","examples","gadfly_sample.mdw"), out_path = :pwd)
```
2014-12-03 14:41:53 +01:00
<<term=true>>=
using Gadfly
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
y = 20
plot(x=x, y = cos(x), Geom.line)
@
<<>>=
x = linspace(0, 200)
2014-12-03 14:41:53 +01:00
println(x)
@