X-Received: by 2002:a37:948:0:b0:6cd:e5cf:aca8 with SMTP id 69-20020a370948000000b006cde5cfaca8mr16014263qkj.253.1663676293100; Tue, 20 Sep 2022 05:18:13 -0700 (PDT) X-Received: by 2002:a05:6870:899d:b0:12b:cdce:63d5 with SMTP id f29-20020a056870899d00b0012bcdce63d5mr1837811oaq.51.1663676292775; Tue, 20 Sep 2022 05:18:12 -0700 (PDT) Path: csiph.com!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Tue, 20 Sep 2022 05:18:12 -0700 (PDT) In-Reply-To: <1193257990.150945.24180@v23g2000prn.googlegroups.com> Injection-Info: google-groups.googlegroups.com; posting-host=196.21.228.253; posting-account=Ut7dwQoAAADwrUA-9M9eYahnegdAT80P NNTP-Posting-Host: 196.21.228.253 References: <1193247108.148779.97930@i13g2000prf.googlegroups.com> <1193252197.340351.153900@i38g2000prf.googlegroups.com> <1193257990.150945.24180@v23g2000prn.googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: mapping z-values as point colors onto 2D plot From: Alicreance Hiyadutuje Injection-Date: Tue, 20 Sep 2022 12:18:13 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Received-Bytes: 2534 Xref: csiph.com comp.graphics.apps.gnuplot:4491 On Wednesday, October 24, 2007 at 10:33:10 PM UTC+2, Hallmarc wrote: > On Oct 24, 3:41 pm, Hans-Bernhard Br=C3=B6ker > wrote: > > Hallmarc wrote: > > > Unfortunately, there's something I'm not understanding about pm3d: > > > > > gnuplot> splot "socks.dat" using 1:3:4 with pm3d > > > Warning: Single isoline (scan) is not enough for a pm3d plot. > > > Hint: Missing blank lines in the data file? See 'help pm3d' and > > > FAQ. > > > > > socks.dat is a file with several hundred thousand rows, four columns > > > (column 2 is not used), and no breaks between rows. > > > > ... which means it doesn't describe any surface, so pm3d can't plot it > > as a coloured surface. Looks like what you really want is a plot of > > coloured points, i.e.: > > > > set view map > > splot 'data' u 1:2:(0.0):3 with points palette > > > > Either that, or you should insert the missing breaks into the data file= . > That did the trick, thanks! I guess the third coordinate of 0.0 just > basically push everything up against a 2D plane...excellent. In my case, I was missing only "with points palette".