PlotView: displaying error

The following code will result in the image above

pv = gui.CreatePlotView()

d = gui.PlotData(0,0,0)

for i in range(5):
  for j in range(5):
    d.AddXWYW(j,j,i,i)

pv.AddData(d)


How error is shown can be set via the "Display" menu. The following options will result in the images below.

Options

ErrorWeight?

ErrorBars?


back to PlotView

Attachments