I use Gnuplot to draw a graph. On the graph, I drew three smooth curves belonging to three data sets.
I am currently using the following Gnuplot script.
reset set terminal png set xlabel "Square matrix size" set ylabel "Time (in milliseconds)" set yrange [0:750] set title "Lower Triangular Matrix" set key reverse Left outside set grid set output 'matrixlt.png' set style data linespoints plot "matrixlowertriangle.dat" using 1:2 lt 1 lw 2 smooth bezier title 'MatPro', \ "matrixlowertriangle.dat" using 1:3 lt 2 lw 2 smooth bezier title 'C#' , \ "matrixlowertriangle.dat" using 1:4 lt 3 lw 2 smooth bezier title 'C++'
With the above script, I get the following graph. 
Now I want to draw every point that belongs to the same curve using a unique point style. (For example, each point belonging to C #, using one type of point and C ++ data, points in a different style.)
I tried some tutorials, but I still had no luck. Can someone help me achieve this?
source share