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

chained repeated tabyl calls end in variable name conflict #54

Closed
sfirke opened this issue Aug 17, 2016 · 0 comments
Closed

chained repeated tabyl calls end in variable name conflict #54

sfirke opened this issue Aug 17, 2016 · 0 comments
Assignees
Labels
bug

Comments

@sfirke
Copy link
Owner

@sfirke sfirke commented Aug 17, 2016

I wanted to do this:

mtcars %>% tabyl(mpg) %>% tabyl(n)

But got error message:

Error: found duplicated column name: n

Compare to:

mtcars %>% count(mpg) %>% count(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.