In [6]:
Pkg.update()
In [7]:
println("Hello my litte friend")
In [7]:
using RDatasets
using Gadfly
set_default_plot_size(9inch, 9inch/golden);
In [7]:
sepalplot = plot(dataset("datasets", "iris"), x="SepalWidth", y="SepalLength", color="Species", Geom.point);
In [2]:
draw(SVG("myplot2.svg", 6inch, 3inch), sepalplot);
In [3]: