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

full_join returns a data frame #16

Closed
hadley opened this issue Mar 8, 2016 · 1 comment
Closed

full_join returns a data frame #16

hadley opened this issue Mar 8, 2016 · 1 comment

Comments

@hadley
Copy link
Member

hadley commented Mar 8, 2016

Moved from tidyverse/dplyr#1042, by @jcfisher

library(dplyr)
library(dtplyr)

dt1 <- data.table::data.table(x = 1:3, y = 3:1, key = "x")
dt2 <- data.table::data.table(x = 1:3, z = 1:3, key = "x")

class(left_join(dt1, dt2, by = "x"))
class(full_join(dt1, dt2, by = "x"))
@krlmlr
Copy link
Member

krlmlr commented Mar 8, 2016

Same with right join.

krlmlr added a commit that referenced this issue Jun 19, 2016
krlmlr pushed a commit that referenced this issue Jun 19, 2016
- `distinct()` gains `.keep_all` argument (#30, #31).
- Slightly improve test coverage (#6).
- Install `devtools` from GitHub on Travis (#32).
- Joins return `data.table`. Right and full join are now implemented (#16, #19).
- Remove warnings from tests (#4).
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