# scatter_2d_input.txt # # Discussion: # # Have GNUPLOT read SCATTER_2D_DATA.TXT and # create a "scatter plot" of the data, that is, dots representing # each point. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 14 October 2013 # # Author: # # John Burkardt # set term png set style line 1 lt 3 pt 4 set output "scatter_2d.png" set title "Scatter Plot of 2D Data" set grid set pointsize set timestamp plot 'scatter_2d_data.txt' with points lt 3 pt 4 quit