I have a huge data file with three columns " X Y data" about 60000 rows without any space between them. The values are in the raster pattern. For example in a square of 1cm side the data file will look like
0.0 0.0 7.8
0.2 0.0 5.2
0.4 0.0 6.7
0.6 0.0 7.5
0.8 0.0 7.8
1.0 0.0 5.6
1.0 0.2 6.2
0.8 0.2 4.5
0.6 0.2 4.8
. . . . . . .
1.0 1.0 8.9
I want to plot a heat map for this. I tried using http://gnuplot.sourceforge.net/demo/heatmaps.html Gnuplot heatmap XYZ but I was not able to do it. Does anyone have a clue how to proceed with it? Any help will be appreciated.