Skip to content
Prev 168426 / 398502 Next

need help combining two datasets

Adam D. I. Kramer <adik <at> ilovebacon.org> writes:
I think the merge function will not do it here, because he has different sets of
stock. I would suggest the following

-- Read in A.CSV and B.CSV into data frames a and b
-- Remove uninteresing columns 
-- a$method = 'a'
-- b$method = 'b'
-- rename column returnA and return B to "return"
-- rbind(a,b)

Dieter