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
library(vctrs) library(tibble) vec_rbind( tibble(x = list(a = 1, b = 2)), tibble(x = list(c = 3, d = 4)) )$x #> [[1]] #> [1] 1 #> #> [[2]] #> [1] 2 #> #> [[3]] #> [1] 3 #> #> [[4]] #> [1] 4 vec_rbind( tibble(x = c(a = 1, b = 2)), tibble(x = c(c = 3, d = 4)) )$x #> [1] 1 2 3 4
underlying issue to tidyverse/dplyr#4446
The text was updated successfully, but these errors were encountered:
x_arg
value_arg
vec_assign()
vec_names()
vec_cast()
Preserve row names and inner names in vec_c() and vec_rbind()
vec_c()
vec_rbind()
86bf21f
Closes r-lib#689
vec_set_names()
066f911
3e1232c
Successfully merging a pull request may close this issue.
underlying issue to tidyverse/dplyr#4446
The text was updated successfully, but these errors were encountered: