OHDSI / Andromeda

AsynchroNous Disk-based Representation of MassivE DAta: An R package aimed at replacing ff for storing large data objects.
https://ohdsi.github.io/Andromeda/
11 stars 9 forks source link

arrow version: support colnames() #44

Open schuemie opened 1 year ago

schuemie commented 1 year ago

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 commented 1 year ago

implemented in develop branch