Skip to content
Snippets Groups Projects
Commit dd4f2a23 authored by dst1m17's avatar dst1m17
Browse files

Gnuplot script for line plot added

parent 2998defd
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment