I have a tibble df
, and if I do the below, I get all rows data in below format.
df = tibble(A1=c("A03816","A03817"))
> df[["A1"]]
[1] "A03816" "A03817"
But I want those 2 words in the same string like below, how can I do it?
[1] "A03816 A03817"