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


Groups > comp.graphics.apps.gnuplot > #962

Re: Multiple Scatter Plots

From sfeam <sfeam@users.sourceforge.net>
Newsgroups comp.graphics.apps.gnuplot
Subject Re: Multiple Scatter Plots
Followup-To comp.graphics.apps.gnuplot
Date 2012-02-22 10:48 -0800
Organization gnuplot development team
Message-ID <ji3d91$idd$1@dont-email.me> (permalink)
References <6804076.931.1329919174440.JavaMail.geo-discussion-forums@ynjc20>

Followups directed to: comp.graphics.apps.gnuplot

Show all headers | View raw


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

Back to comp.graphics.apps.gnuplot | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

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

csiph-web