I'd like to merge old data with new data but am concerned that
there may at times be some rows that are repeated. If there are then
I'd like to remove them as long as they are exact duplicates.
Currently I merge different portions of trading systems - say longs
with shorts - where the longs and shorts are in diffrerent files. I
use code that sort of goes something like this:
rbind(longs,short)
order to get them shuffeled back together in date order
tradeNumber = 1:dim[NewArray)[1]
I can probably write something but it would be nice to use
something already in the libraries.
Thanks,
Mark