Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #1330
| From | s0198362 <adrian.h.hill@gmail.com> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | splot with lines |
| Date | 2012-08-16 05:14 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <7d277073-0288-4846-97f9-86b490e6a44c@googlegroups.com> (permalink) |
Hi.
I have a data file (multiple xy data scans) from which I can plot a suitable colour map using splot.
I would now like to show the individual scans. Changing to splot with lines has the scans connected across x and y. Is there a way of removing the interconnecting lines along y?
When I choose with points, I get something close to what i want, but not quite, as I would like the points to be connected along x.
Thanks
######################
reset
set termoption dash
set term postscript color enhanced eps "Helvetica" 16
set output "stack_01.eps"
set size 1,1
set border 4095 front linetype -1 linewidth 1.000
unset key
unset contour
set xlabel "2{/Symbol-Oblique q} / {/Symbol \260}"
set ylabel "Scan number"
set ytics mirror
set zlabel "Relative intensity / s^{-1}" rotate by 90
set xrange [ * : 70 ]
set yrange [ 1 : 95]
set zrange [ * : *]
set view 60,15
#splot "combined.txt" using 2:1:($3/925.1) every :8::1::95 with lines
splot "combined.txt" using 2:1:($3/925.1) every :8::1::95 with points
###########################
Adrian
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
splot with lines s0198362 <adrian.h.hill@gmail.com> - 2012-08-16 05:14 -0700
Re: splot with lines s0198362 <adrian.h.hill@gmail.com> - 2012-08-16 07:53 -0700
Re: splot with lines "Alex van der Spek" <zdoor@xs4all.nl> - 2012-08-16 19:52 +0200
Re: splot with lines s0198362 <adrian.h.hill@gmail.com> - 2012-08-19 04:37 -0700
csiph-web