Skip to content
New issue

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

Support check.names = FALSE in merge.xts() #293

Closed
joshuaulrich opened this issue Apr 20, 2019 · 0 comments
Closed

Support check.names = FALSE in merge.xts() #293

joshuaulrich opened this issue Apr 20, 2019 · 0 comments
Assignees
Labels
feature request New features
Milestone

Comments

@joshuaulrich
Copy link
Owner

merge.xts() does not currently honor check.names = FALSE. This is documented behavior, but it would be nice to have support.

x <- xts::.xts(1:3, 1:3, dimnames = list(NULL, "42"))
y <- xts::.xts(1:3, 1:3, dimnames = list(NULL, "21"))
merge(x, y)                       # leading "X" added
merge(x, y, check.names = TRUE)   # same
merge(x, y, check.names = FALSE)  # should have numeric column names
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New features
Projects
None yet
Development

No branches or pull requests

1 participant