|
From: Hans-Bernhard B. <HBB...@t-...> - 2011-04-26 22:15:41
|
On 26.04.2011 12:57, folkert wrote: > splot '/tmp/scatter-plot.dat' using 1:2:3 with pm3d > but this gives me this colored blob: > http://keetweej.vanheusden.com/~folkert/scatter-plot.png > not the + signs with color I hoped for. I do wonder on what basis you formed the expectation that 'with pm3d' would give you coloured point symbols... What you're looking for is 'with points palette'. And you'll probably want to stick with a 2D plot instead of 3D splot for that, i.e.: plot '/tmp/scatter-plot.dat' using 1:2:3 with points palette |