I have a string column. I need to create an array of words by splitting string by " " (space). The code below works fine for single cell
array(strsplit(f2$standard_address[1], " ")[[1]] )
I want to do this for an entire column. I tried few apply function but not able to store them.
Can you help me create a vector field and store results there?