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
Hi All, dtplyr does not support custom suffixes with joins on tbl_dt objects. See the example below:
tbl_dt
library(dplyr) USArrests2 <- USArrests %>% mutate(Name = rownames(.)) %>% tbl_dt() USArrests2 %>% inner_join(USArrests2, by = "Name", suffix = c("_old", "_new")) %>% head()
The same for left, right, semi and full join. For tbl_df objects join functions work as expected.
tbl_df
The text was updated successfully, but these errors were encountered:
suffix
Successfully merging a pull request may close this issue.
Hi All,
dtplyr does not support custom suffixes with joins on
tbl_dt
objects. See the example below:The same for left, right, semi and full join. For
tbl_df
objects join functions work as expected.The text was updated successfully, but these errors were encountered: