aisd_lab/lab4/zad6/gnuplot/asc_comp.gp

15 lines
304 B
Text
Raw Permalink Normal View History

2024-06-06 01:41:46 +02:00
set title "Insert n asc, delete n rand - Comp, n ∈ {10000, 20000, ..., 100000}"
set style data lines
set xlabel "n"
set ylabel "comparisons"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/asc_comp" \
using 1:2 t "Average", \
"" using 1:3 t "Max", \
set terminal pdf
# vim: ft=gnuplot