powered by
Test what geographic entities will be detected in your data without actually performing the geocoding. Useful for debugging and verification.
preview_geocoding(data, show_sample = TRUE, n_sample = 5)
List with detection results
Data frame to analyze
Show sample values (default: TRUE)
Number of sample values to show (default: 5)
if (FALSE) { # Check what will be detected my_data <- data.frame( HUC_8 = c("04100009", "04100012"), State = c("Ohio", "PA"), value = c(100, 200) ) preview_geocoding(my_data) }
Run the code above in your browser using DataLab