I have a table in R with the following information. Some rows in employee
have roman numerals, some do not:
employee <- c('JOHN SMITH II','PETER RABBIT','POPE GREGORY XIII', 'MARY SUE IV')
salary <- c(21000, 23400, 26800, 100000)
employee_df <- data.frame(employee, salary)
> employee_df
employee salary
1 JOHN SMITH II 21000
2 PETER RABBIT 23400
3 POPE GREGORY XIII 26800
4 MARY SUE IV 100000
How would I remove the roman numerals so that employee_df$employee
would be the follwing?
JOHN SMITH PETER RABBIT POPE GREGORY MARY SUE