[ad_1]
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
[ad_2]
solved How to merge data into python
[ad_1]
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
[ad_2]
solved How to merge data into python