You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
merge.xts() returns a completely empty xts object if you merge only empty objects. merge.zoo() returns a zero-width object with the appropriate index values.
> merge(.xts(,1:3), .xts(,2:4)) # index is emptyData:numeric(0)
Index:
integer(0)
> merge(zoo(,1:3), zoo(,2:4)) # index is mergedData:numeric(0)
Index:
[1] 1234> merge(.xts(,1:3), .xts(,2:4), .xts(,0:2)) # index is emptyData:numeric(0)
Index:
integer(0)
> merge(zoo(,1:3), zoo(,2:4), zoo(,0:2)) # index is mergedData:numeric(0)
Index:
[1] 01234
The text was updated successfully, but these errors were encountered:
merge.xts()
returns a completely empty xts object if you merge only empty objects.merge.zoo()
returns a zero-width object with the appropriate index values.The text was updated successfully, but these errors were encountered: