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: Joshua Ulrich R-Forge link
As reported by Pat Burns as An xts R Inferno-ism.
library(xts) xtx <- xts(cbind(a=1:4, b=11:14, c=21:24), order=Sys.Date() + 1:4) xtx[, c('b', 'notHere', 'a')] # no warning/error as.matrix(xtx)[, c('b', 'notHere', 'a')] # error as.zoo(xtx)[, c('b', 'notHere', 'a')] # error
The text was updated successfully, but these errors were encountered:
ef9b3ce
joshuaulrich
No branches or pull requests
Submitted by: Joshua Ulrich
Assigned to: Joshua Ulrich
R-Forge link
As reported by Pat Burns as An xts R Inferno-ism.
The text was updated successfully, but these errors were encountered: