Learn R Programming

ggmap (version 2.5.2)

mutate_geocode: Geocode a dataset

Description

mutate_geocode geocodes a data frame and appends the new information to the data frame provided.

Usage

mutate_geocode(data, location, ...)

Arguments

data
a data frame
location
a character string specifying a location of interest (e.g. "Baylor University")
...
arguments to pass to geocode

Value

  • data with geocoded information appended as columns

See Also

geocode

Examples

Run this code
df <- data.frame(
  address = c("1600 Pennsylvania Avenue, Washington DC", "", "houston texas"),
  stringsAsFactors = FALSE
)

# Server response can be slow; this cuts down check time.
mutate_geocode(df, address)


library(dplyr)
df %>% mutate_geocode(address)

Run the code above in your browser using DataLab