R tidyverse function unite() concatenates two columns
Pontifications
- TIL unite() concatenates two columns with underscore “_” being the default separator and
separate()
does the opposite - see
unite(text, title, content, sep = " ")
separate()
does the oppositeunite(text, title, content, sep = " ")