Do definitely try GNUplot, I've never looked back! No more point and click excel nightmares.
#!/bin/bash # Some code here that generates some pretty csv /usr/bin/gnuplot <<\EOF reset set term png size 500, 270 set key top left set output "graph.png" set datafile separator "," set xrange [0:24000] set xlabel "Integers" set ylabel "Time (s)" plot "test.csv" using 1:2 title "Mapped", "test.csv" using 1:3 title "Unmapped" EOF
Generates the following plot...(obviously depends on your data!)
No comments:
Post a Comment
Leave a comment!