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
All xts objects should have a dim attribute, but it would be nice if rbind.xts() did not throw an obscure error on a malformed xts object.
R$ require(xts)
e <- structure(0.1, class = c("xts", "zoo"),
index = structure(581910048, tzone = "UTC", tclass = "Date"))
rbind(e, e)
## Error in rbind(deparse.level, ...) :
## INTEGER() can only be applied to a 'integer', not a 'NULL'
The text was updated successfully, but these errors were encountered:
rbind() would throw an obscure error if one of the xts objects does
not have a dim attribute. We can handle this case even though all xts
objects should always have a dim attribute.
Fixes#361.
All xts objects should have a
dim
attribute, but it would be nice ifrbind.xts()
did not throw an obscure error on a malformed xts object.The text was updated successfully, but these errors were encountered: