I have a tibble where I want to separate a column that also includes one number. I want to separate it into two columns. I would like the seperator: "sep" to be equal to a digit. (So that one column would have the number, and the other the fctr.
separate(x, into = c("fctr", "number"), sep ="??what do I put here?")
example: on the "week_days", I want to separate the numbers from the characters. I want the numbers to appear in another column.