set title "Average comparisons, k = 100, n ∈ {10, 20, ..., 50}" set style data lines set xlabel "n" set ylabel "Average comparisons" set term pdfcairo font "JetBrainsMono-NF,12" plot "./results/k100/small" \ using 1:2 t "MergeSort", \ "" using 1:4 t "MySort" # vim: ft=gnuplot