Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.42!gegeweb.eu!gegeweb.org!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: sfeam Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Multiple Scatter Plots Followup-To: comp.graphics.apps.gnuplot Date: Wed, 22 Feb 2012 10:48 -0800 Organization: gnuplot development team Lines: 19 Message-ID: References: <6804076.931.1329919174440.JavaMail.geo-discussion-forums@ynjc20> Reply-To: sfeam@users.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Injection-Date: Wed, 22 Feb 2012 18:48:01 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="joalffpZlyHxFtpFd/PRrw"; logging-data="18861"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19TjHoWfnU5t/ARZ85fmFPM" User-Agent: KNode/4.4.9 Cancel-Lock: sha1:WmvF0wYFYMEUuA+NTs97k138G28= Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:962 scap3y wrote: > I want to make scatter plots from 2 different source files "test1.txt" and > "test2.txt" but from different columns. I am just not able to get 2 > different scatters. My code is given below. Any help would be much > appreciated. > > *** > > set multip > multiplot> splot "./test1.txt" using 2:3:4 lt 1 > multiplot> splot "./test2.txt" using 2:3:4 lt 2 > multiplot> unset multi > > *** If you want both distributions shown on the same plot, you shouldn't be using multiplot. Try splot "test1.txt" using 2:3:4, "test2.txt" using 2:3:4