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
This is somewhat a followup of this dplyr PR tidyverse/dplyr#4250 and related issue tidyverse/dplyr#4230
Can/should vec_rbind() have an .id argument ?
vec_rbind()
.id
Should vec_rbind() obey name repair rules, and have a .name_repair= argument ?
.name_repair=
are duplicated column names allowed, and if yes, how should they behave, this feels wrong:
library(vctrs) library(tibble) d1 <- tibble(x = 1:2, x = letters[3:4], .name_repair = "minimal") d2 <- tibble(x = 5:6) vec_rbind(d1) #> # A tibble: 2 x 2 #> x x #> <int> <chr> #> 1 1 1 #> 2 2 2 vec_rbind(d1, d2) #> # A tibble: 4 x 2 #> x x #> <int> <int> #> 1 1 1 #> 2 2 2 #> 3 5 5 #> 4 6 6
Created on 2019-03-07 by the reprex package (v0.2.1.9000)
The text was updated successfully, but these errors were encountered:
Add .name_repair parameter to vec_rbind()
.name_repair
aea3f15
Part of r-lib#229
e2e81eb
Add .id parameter to vec_rbind()
dc33da5
Closes r-lib#229
.names_to
658882e
69ecf24
Successfully merging a pull request may close this issue.
This is somewhat a followup of this dplyr PR tidyverse/dplyr#4250 and related issue tidyverse/dplyr#4230
Can/should
vec_rbind()
have an.id
argument ?Should
vec_rbind()
obey name repair rules, and have a.name_repair=
argument ?are duplicated column names allowed, and if yes, how should they behave, this feels wrong:
Created on 2019-03-07 by the reprex package (v0.2.1.9000)
The text was updated successfully, but these errors were encountered: