I have a function returning data frame like this:
TERM Freq
GO1 1
GO2 5
GO3 4
I'm calling the function multiple times using lapply, and I want to average all the results receive (Freq column) by the TERM column. Note that each run may return slightly different terms.
The results of the lapply function looks like:
Thanks!