I've got the following code in Google Spreadsheets: =JOIN(" ",B2:E2)
It merges three columns: 'First Name', 'Middle Initial', 'Last Name' in order to get me a new column, which I call 'Unique Name'
Now, Google Sheets doesn't let me join as an arrayformula (=ARRAYFORMULA(JOIN(" ",$B$2:$E))
returns error: "JOIN range must be a single row or a single column."
So, I'm trying to figure out how to do this in R.
My dataframe (I think I'm using that term correctly) name in R is "NSCH", and the columns are named 'First.Name', 'Middle.Initial', 'Last.name', 'Name.Suffix'
Other search terms: How to do a (google sheets|excel) "join" (function|formula) in R