I am trying to remove the lat/long coordinates in the string below to place into two separate columns "lat" and "long" in R. I haven't had much luck using separate in dplyr. Any help would be most appreciated.
data_clean <- c("7205 MILLS CIVIC PKWY\nWEST DES MOINES 50266\n(41.561342, -93.806489)",
"305 AIRPORT RD\nAMES 50010\n(42.001123, -93.61365)",
"210 EAST TOWER PARK DR\nWATERLOO 50702\n(42.456362, -92.352552)")
data_clean_df <- as.data.frame(data_clean)