aisd_lab/lab2/zad3/gnuplot/k1/swap_small_n.gp

12 lines
274 B
Gnuplot

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