I would like to merge and sum the values of each row that contains duplicated IDs.
For example, the data frame below contains a duplicated symbol \'LOC102723897\'. I wou
We can just use aggregate from base R
aggregate
base R
aggregate(.~ Symbol, df, FUN = sum)