I have a dataset of the form
x,y,z,zerr
and want to generate a three dimensional plot of it including error bars on the values for z. So what I want is a plot like
splot "datafile.dat" using 1:2:3
which gives a regular 3D plot, but it should also include error bars. I have tried using
splot "datafile.dat" using 1:2:3:4 with errorbars
but this only generates the same plot again, not showing any error bars. Is there a way to do this in Gnuplot? If no, is there a way to do it in Python using matplotlib? If so, I might be using it instead.

