aisd_lab/lab4/zad4/gnuplot/asc_height.gp

14 lines
303 B
Gnuplot

set title "Insert n asc, delete n rand - Height, n ∈ {10000, 20000, ..., 100000}"
set style data lines
set xlabel "n"
set ylabel "height"
set term pdfcairo font "JetBrainsMono-NF,12"
plot "./results/asc_height" \
using 1:2 t "Average", \
"" using 1:3 t "Max", \
set terminal pdf
# vim: ft=gnuplot