I've got this data frame with data from IMDb in it. One of the columns has the movie title with the year attached in parentheses. Looks like this:
The Shawshank Redemption (1994)
What I really want is to have the title and year separate. I've tried a couple of different things (split, strsplit), but I've had no success. I try to split on the first parentheses, but the two split functions don't seem to like non-character arguments. Anyone have any thoughts?