Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.chainon-marquant.org!nntpfeed.proxad.net!proxad.net!feeder1-1.proxad.net!198.186.194.250.MISMATCH!news-out.readnews.com!news-xxxfer.readnews.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: scap3y Newsgroups: comp.graphics.apps.gnuplot Subject: Multiple Scatter Plots Date: Wed, 22 Feb 2012 05:59:34 -0800 (PST) Organization: http://groups.google.com Lines: 10 Message-ID: <6804076.931.1329919174440.JavaMail.geo-discussion-forums@ynjc20> NNTP-Posting-Host: 188.193.63.40 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1329919174 4583 127.0.0.1 (22 Feb 2012 13:59:34 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 22 Feb 2012 13:59:34 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=188.193.63.40; posting-account=ZNT8NQoAAAB5ERmmcLlc1AVWWiSCtUna User-Agent: G2/1.0 X-Google-Web-Client: true Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:956 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 ***