Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #956 > unrolled thread

Multiple Scatter Plots

Started byscap3y <sarthakpati@gmail.com>
First post2012-02-22 05:59 -0800
Last post2012-02-24 05:12 -0800
Articles 3 — 2 participants

Back to article view | Back to comp.graphics.apps.gnuplot


Contents

  Multiple Scatter Plots scap3y <sarthakpati@gmail.com> - 2012-02-22 05:59 -0800
    Re: Multiple Scatter Plots sfeam <sfeam@users.sourceforge.net> - 2012-02-22 10:48 -0800
      Re: Multiple Scatter Plots scap3y <sarthakpati@gmail.com> - 2012-02-24 05:12 -0800

#956 — Multiple Scatter Plots

Fromscap3y <sarthakpati@gmail.com>
Date2012-02-22 05:59 -0800
SubjectMultiple Scatter Plots
Message-ID<6804076.931.1329919174440.JavaMail.geo-discussion-forums@ynjc20>
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

***

[toc] | [next] | [standalone]


#962

Fromsfeam <sfeam@users.sourceforge.net>
Date2012-02-22 10:48 -0800
Message-ID<ji3d91$idd$1@dont-email.me>
In reply to#956
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

[toc] | [prev] | [next] | [standalone]


#964

Fromscap3y <sarthakpati@gmail.com>
Date2012-02-24 05:12 -0800
Message-ID<17830082.11948.1330089121855.JavaMail.geo-discussion-forums@vbbgt10>
In reply to#962
Thanks, mate.. I figured that out the same day.. Just forgot to delete this..

[toc] | [prev] | [standalone]


Back to top | Article view | comp.graphics.apps.gnuplot


csiph-web