We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dplyr seems to have a problem when I use comment() to describe my variables:
test <- data.frame(A = c(1,1,0,0), B = c(2,2,3,3)) summarise(group_by(test, A), mean(B)) Source: local data frame [2 x 2]
A mean(B) 1 0 3 2 1 2
comment(test$B) <- "2nd Var" summarise(group_by(test, A), mean(B))
Error: column 'B' has unsupported type
The text was updated successfully, but these errors were encountered:
14fc60c
romainfrancois
No branches or pull requests
dplyr seems to have a problem when I use comment() to describe my variables:
A mean(B)
1 0 3
2 1 2
Error: column 'B' has unsupported type
The text was updated successfully, but these errors were encountered: