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

inner_join.tbl_df throws error #593

Closed
wch opened this issue Sep 12, 2014 · 2 comments
Closed

inner_join.tbl_df throws error #593

wch opened this issue Sep 12, 2014 · 2 comments

Comments

@wch
Copy link
Member

wch commented Sep 12, 2014

Example:

a <- data.frame(g = c('a', 'b'), x = 1:2)
b <- data.frame(g = c('a', 'b'))
inner_join(a, b, by = "g")
# Error in inner_join_impl(x, y, by) : 
#   argument "by_y" is missing, with no default

In version 0.2, it works fine:

> inner_join(a, b, by = "g")
  g x
1 a 1
2 b 2
@hadley
Copy link
Member

hadley commented Sep 12, 2014

Yeah this is temporary - romain updated c code and I need to do r code

@romainfrancois
Copy link
Member

yeah sorry about that :/

@hadley hadley closed this as completed in 9cf29da Sep 12, 2014
@lock lock bot locked as resolved and limited conversation to collaborators Jun 10, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants