Skip to content

Instantly share code, notes, and snippets.

@raphapr
Created January 8, 2017 23:40
Show Gist options
  • Save raphapr/3118ebde87df7509a84d6f19cd50d2d0 to your computer and use it in GitHub Desktop.
Save raphapr/3118ebde87df7509a84d6f19cd50d2d0 to your computer and use it in GitHub Desktop.
using PyPlot
font_size = 13
data = readcsv("output.csv")
data = map(Float64,data[1:size(data,1) .!= 1,: ])
boxplot(data)
ylabel("Execution time (seconds)", fontsize = font_size*1.25)
xlabel("Tasks", fontsize = font_size*1.25)
grid("on")
tick_params(axis="y", labelsize=font_size)
tick_params(axis="x", labelsize=font_size)
savefig(string("plot-",time(),".pdf"))
PyPlot.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment