I need to split the 'fiction_work' column (see picture) into 3 separate columns 'work', 'author', 'year'.
picture: https://i.stack.imgur.com/nRat5.jpg
I tried this one, but only maneged to separate 'work', from 'author'. I do not really understand how i can separate the year in brackets.
separated <- separate (total, col = 'fiction_works', into = c('work', 'author'), sep= ",")
I'm doing my best to improve my R skills in but cannot figure this one. Any help is much appreciated. Thanks in advance.