[Solved] How to merge data into python


try to understand your question, as far as I can do now…

df = pandas.read_csv('your file name',sep=';', header=None)
df = df.groupby([1]).mean().reset_index()

then pick the column you need.

2

solved How to merge data into python