Created
January 8, 2017 23:40
-
-
Save raphapr/3118ebde87df7509a84d6f19cd50d2d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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