I am working with python / numpy. As input data I have a large number of value pairs (x,y). I basically want to plot (x), i.e., the mean value
(x,y)
(x)
If you can use pandas:
import pandas as pd xedges = np.linspace(x.min(), x.max(), xbins+1) xedges[0] -= 0.00001 xedges[-1] += 0.000001 c = pd.cut(x, xedges) g = pd.groupby(pd.Series(y), c.labels) mean2 = g.mean() std2 = g.std(0)