Is it possible to split a column containing vectors with 3 elements into 3 seperate columns inside of a dataframe??
One column containing vectors like c("aa","bb","cc")
should turn into 3 columns containing singular values like
"aa" "bb" "cc"
Every tidyr or dyplr operation that claims to do this only works on strings and formats the contents of my colum as the String "c("aa","bb","cc")"
(?!) before splitting.
Is there any library that can split vectors into seperate columns?