I am replacing " o " with new line character, a carriage return and two tabs and the o. It works except I'm only getting one tab, why? How can I specify two tabs since \t\t does not work.
data.frame(lapply(dfClean[,selectCols], gsub, pattern = " o ", replacement = "\r\n\t\to ", perl = TRUE))