tidyverse / multidplyr

A dplyr backend that partitions a data frame over multiple processes
https://multidplyr.tidyverse.org
Other
641 stars 75 forks source link

arrange function does not work in multidplyr #55

Closed kyp0717 closed 7 years ago

kyp0717 commented 7 years ago

R CODE:

bel.rx.clm <- rbind(bel.rx.clms.2015d,bel.rx.clms.2016d) %>% select(ENROLID, SVCDATE) %>% arrange(SVCDATE)

cluster <- create_cluster(16)

bel.cohort.idx <- bel.rx.clm %>% partition(ENROLID,cluster=cluster) %>% arrange(SVCDATE) %>% first() %>% collect()

ERROR

Error in UseMethod("arrange") : no applicable method for 'arrange' applied to an object of class "party_df"

Ax3man commented 7 years ago

See #49.