I was wondering how I could be able to split the Author name from the study year and put them in separate columns. The data frame that I have is as below:
df <-
Study N
John et al., 2003 10
Nich et al., 1988 15
Result should be:
df <-
Study Year N
John et al., 2003 10
Nich et al., 1988 15
I am using R.