We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submitted by: Joshua Ulrich Assigned to: Nobody R-Forge link
library(xts) # sample data st <- Sys.time() x1 <- xts(1, st) x2 <- xts(2, st) # change class class(x1) <- c('foo','xts','zoo') class(x2) <- c('foo','xts','zoo') # call Ops.xts x3 <- x1 + x2 class(x3) # [1] 'xts' 'zoo' # expected 'foo' 'xts' 'zoo'
The text was updated successfully, but these errors were encountered:
90887ce
No branches or pull requests
Submitted by: Joshua Ulrich
Assigned to: Nobody
R-Forge link
The text was updated successfully, but these errors were encountered: