diff --git a/plot-line.plt b/plot-line.plt new file mode 100644 index 0000000000000000000000000000000000000000..d4223c9073050a5b6ad8a33206bc9086d42c211b --- /dev/null +++ b/plot-line.plt @@ -0,0 +1,8 @@ +set terminal png +set output "plot-sort-data.png" +set title "Computational cost of sorting algorithm" +set xlabel "Number of elements to sort" +set ylabel "Time (ms)" +set style line 1 linecolor rgb '#0060ad' linetype 1 linewidth 2 pointtype 7 pointsize 1.5 +set datafile separator ',' +plot "data.dat" using 1:2 with linespoints ls 1 \ No newline at end of file