This is a simple problem which is proving difficult to solve. I want to plot error bars on points in a 3D scatter graph. I plot error bars on points within a 2D scatter by:
ErrorListPlot[{{{x1_,y1_},ErrorBar[x1_err,y1_err]},{x2_,y2_},ErrorBar[x2err_,y2err_]}}]
I can plot 3D point data by:
ListPointPlot3D[{{x1_,y1_,z1_},{x2_,y2_,z2_}}]
However, the ErrorBar function doesn't seem to work in 3D (have tried ErrorBar3D and variations of).
Any suggestions much appreciated!
Comments
Post a Comment