|
From: sfeam (E. Merritt) <eam...@gm...> - 2013-03-02 03:02:29
|
On Thursday, 28 February 2013, atoms.h wrote:
> dear all,
>
> I'm trying to make a type of fence plot, where 2D data is plotted in pseudo
> 3D with a fixed y-value. My problem is I still like to have error bars,
> which as is my understanding are not permitted in splot (something like
> zerrorbars).
> Any chance there is a solution?
Not in a single plot type, but you could split the error bars out
into a second plot element. Assuming a file containing
x y meanz lowz highz
splot 'data' using 1:2:3 with points, \
'' using 1:2:4:(0):(0):($5-$4) with vectors nohead lt -1
> here's a sample:
> <http://gnuplot.10905.n7.nabble.com/file/n17125/drawing-1.png>
Nice plot.
> Another strange issue is the pdf terminal. It seems to not respect the
> linetype in splot mode (the above was done in the PS terminal). I was
> plotting one of the three plots above with the same pdf output and the
> dashed lines became continuous using splot. Changing the dash length didn't
> help
> (set term pdf color enhanced font "default, 4" lw 2 dashed dl 0.1 size
> 8cm,5cm)
"dl 0.1" means "dashes and dash separation are only 1/10 the normal size".
That's probably not what you want.
Ethan
> thanks in advance,
> thomas
>
>
>
> --
> View this message in context: http://gnuplot.10905.n7.nabble.com/splot-errorbars-in-fence-plot-tp17125.html
> Sent from the Gnuplot - User mailing list archive at Nabble.com.
>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_feb
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
|