As you might have found out, one of the data sets does not provide - but
-dimensional data.
Unfortunately, grace is not able to plot
D so we have to switch back to gnuplot again...
Start gnuplot and use the splot command to plot the data into a D coordinate system
gnuplot> splot "datafile"
Like in the previous D plot, gnuplot uses
+
signs to mark your data points. Change that behavior by
appending with lines to the splot command again. This will draw a line that connects all data
points in the order the data was given.
Of course, this might produce ugly looking results, so gnuplot provides you with a way to fit your data
points into a grid of given precision.
After that procedure you will be able to plot the resulting grid instead of just the data itself.
This is especially useful if you do not have data that is distributed in a grid like way but scattered. Use
gnuplot> set dgrid3d x,y,wand replace
gnuplot> help dgrid3d
After setting a reasonable grid, type
gnuplot> replotto plot the data last used again.
Try different grid sizes and weighting norms to investigate their influence on the data.