#!/user/bin/gnuplot reset set terminal png set title filename font ",20" set ylabel "Time in Seconds" set xdata time set timefmt "%Y%m%d" set format x "%Y-%m-%d" set xlabel "Date" set style data linespoints set terminal pngcairo size 1024,768 enhanced font 'Segoe UI, 10' set output filename . '.png' set datafile separator ',' set key reverse Left outside set grid plot filename . '.csv' using 1:2 title "Create 10,000 Tables", \ "" using 1:3 title "Delete 10,000 Tables", \ "" using 1:4 title "Create 10,000 Tables and Insert 100,000 records"