I have a dataset of the type below:
data = {{a1,b1,c1},{a2,b2,c2},{a3,b3,c3}}
and another set of data which corresponds to my error bars for the subsequent plot:
errors = {e1,e2,e3}
I am trying to apply the error data in order to only the a parts of the data, so I want to end up with:
data = {{a1±e1,b1,c1},{a2±e2,b2,c2},{a3±e3,b3,c3}}
I am used to using ErrorListPlot with Mathematica but am now using version 12, where it is no longer used. I think I need to use MapAt and Around, but I am struggling to make this work. Is there a simple way for me to do this?