I have a column in my data frame which has the zipcode, latitude and Longitude
Location
"10007 (40.71363051943297, -74.00913138370635)"
"10002 (40.71612146793143, -73.98583147024613)"
"10012 (40.72553802086304, -73.99789641059084)"
"10009 (40.72664935898081, -73.97911148500697)"
I need to separate them into three different columns like Zipcode, Latitude and Longitude.
I tried to doing this
extract(Location, c("Zip-Code","Latitude", "Longitude"), "\\(([^,]+), ([^)]+)\\)")
I want to use the latitude and longitude to plot the map using ggmap
Thanks
Basic regex extraction:
More readable: