I have a pandas dataframe, df , that contains columns where each row contains a numpy array of varying size e.g.
column A
0 np.array([1,2,3])
1 np.array([1,2,3,4])
2 np.array([1,2])
I there a built in pandas function that will return the mean value of each array, i.e. row, for the entire column? Something like :
df.A.mean()
But which operates on each row. Thanks for any help.