15 lines
331 B
Text
15 lines
331 B
Text
|
set title "Average time / n, n ∈ {100, 200, ..., 50000}"
|
||
|
set style data lines
|
||
|
|
||
|
set xlabel "n"
|
||
|
set ylabel "Average time / n"
|
||
|
set term pdfcairo font "JetBrainsMono-NF,12"
|
||
|
|
||
|
plot "./results/result" \
|
||
|
using 1:16 t "Select 3", \
|
||
|
"" using 1:19 t "Select 5", \
|
||
|
"" using 1:22 t "Select 7", \
|
||
|
"" using 1:25 t "Select 9"
|
||
|
|
||
|
# vim: ft=gnuplot
|