I have vector vec<-1,2,3
. I have tibble that looks like:
first | second
1 |1
1 |1
1 |1
Now I need to add vector vec
to my existing tibble as variable (column) so that tibble should look like:
first | second | third
1 |1 |1
1 |1 |2
1 |1 |3