If the tibble is named Orig and you want the column named id:
This will give you a vector of the values
Orig$id
This will also give you a vector of the values
Orig[["id"]]
The following two commands will give you a one column tibble
Orig["id]
library(dplyr)
select(Orig, id)