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

arrow version: support colnames() #44

Open
schuemie opened this issue Mar 15, 2023 · 1 comment
Open

arrow version: support colnames() #44

schuemie opened this issue Mar 15, 2023 · 1 comment

Comments

@schuemie
Copy link
Member

The new arrow version does not support colnames(). colnames() is not a generic, but it calls dimnames, which is a generic. Adding this code to Andromeda will add support for colnames():

dimnames.ArrowObject <- function(x, do.NULL = TRUE, prefix = "col") {
  return(list(NULL, names(x)))
}
@ablack3
Copy link
Collaborator

ablack3 commented Mar 17, 2023

implemented in develop branch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants