Displaying 1 result from an estimated 1 matches for "downloadsfram".
Did you mean:
downloadsframe
2006 Aug 31
2
Combine 'overlapping' dataframes, respecting row names
...t
nonetheless here I am writing to r-help ;)
This is what I have (the row names are dates used for conversion to
an irregular time series with the its package):
> cvsFrame
cvsactions
2002-11-15 4
2002-12-15 9
2003-01-15 5
2003-02-15 5
> downloadsFrame
downloads
2002-09-15 1
2002-10-15 2
2002-11-15 12
2002-12-15 8
(notice how the dates are overlapping?)
The output I'd like is:
cvsaction downloads
2002-09-15 NA 1
2002-10-15 NA 2
2002-11-15 4...