fill - gnuplot: filling the whole space when plotting sampled data -


i have problem gnuplot. i've searched , don't find correct solution. i'm plotting data arranged in 3 columns command splot, , steps in x , y different. plot with:

set view map splot 'data.dat'  using 1:2:3 points palette 

is:

enter image description here

and white space filled, making each tile size adapt, avoiding interpolation.

some ideas given here reduce distance between points in splot. i've tryed http://gnuplot.sourceforge.net/demo/heatmaps.html too, with image doesn't seem work :(

i should avoid pointsize grid changes time time.

you can try

set pm3d map interpolate 1,1 corners2color c1 splot 'data.dat' using 1:($2-5e-5):3 

this uses no interpolation, , color of each polygon depends on value of corner 'c1'. may need test if correct one, or if need 'c2', 'c3', or 'c4'.


Comments

Popular posts from this blog

c++ - End of file on pipe magic during open -

basic authentication with http post params android -

data.table making a copy of table in R -