I know I need to use ErrorListPlot and a list with elements of the form {{x,y},ErrorBar[e]}. I have x,y,and e all as lists, but I can't figure out how to get a list of of the form...
{ErrorBar[e1],ErrorBar[e2],...,ErrorBar[en]}
... which I'd Riffle together with the list Transpose[{x,y}]. I thought maybe Table[ErrorBar[e[[i]]],{i,1,n}] but I can't use the argument of Part in Table this way.
This should be simple. Maybe I've got some fundamental misunderstanding on plots with error bars?

e? If this is the case, there is no issue with doingTable[ErrorBar[e[[i]]],{i,1,n}]as long asnhas a value (hereLength[x]for instance). You could do as welle /@ Range[n]. – Sep 17 '16 at 21:01