I have a list of postal codes and I want to find their associated longitude and latitude in order to plot them on a map. For example, I showed couple of postal codes below:
code <- c("V6G 1X5", "V6J 2A4", "V5V 3N2")
Now, I want to find longitude and latitude for each of these postal code using ggmap
function. How can I do this?