Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4398
| Newsgroups | comp.graphics.apps.gnuplot |
|---|---|
| Date | 2021-03-26 14:38 -0700 |
| Message-ID | <775a1896-cb5c-406d-8711-7788e30047a4n@googlegroups.com> (permalink) |
| Subject | How can I draw data 2D at differents points as fenceplot at Gnuplot, with a background transparent? |
| From | mfduqued <mfduqued@gmail.com> |
I have three files where each file is 2D with an x-axis vs y-axis. I plot these files as fenceplot at Gnuplot.
With this code
reset
set term postscript eps color enhanced font "Times,15"
set view 54,111
unset xrange
set xtics +.2
set ytics +.5
set yrange [0:5]
set ticslevel 0
set xlabel "Lc/Lx"
set xlabel font "" textcolor lt -.85 rotate parallel
set ylabel "R"
set ylabel font "" textcolor lt -.85 rotate parallel
set zlabel "{/Symbol D} P / P_{NS}"
set xlabel font "" textcolor lt -.85 rotate parallel
set style fill transparent solid 0.25
set pm3d depthorder
y(x) = sin(x)
set ytics ("0.40" 0, "0.45" 1, "0.50" 2)
splot "PressureDesv.dat0" u 1:(0):2 t "R=0.40", "PressureDesv.dat 1" u 1:(1):2 t "R=0.45", "PressureDesv.dat2" u 1:(2):2 t "r=0.50"
set output "maxwell_speed_distribution.eps"
replot
set output
set term x11
I obtained this plot, but I cannot fill these curves with background transparent.
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
How can I draw data 2D at differents points as fenceplot at Gnuplot, with a background transparent? mfduqued <mfduqued@gmail.com> - 2021-03-26 14:38 -0700 Re: How can I draw data 2D at differents points as fenceplot at Gnuplot, with a background transparent? Jörg Buchholz <bookwood4new@freenet.de> - 2021-03-29 07:30 +0200
csiph-web