I'm working with a choroplethr map like the one below. How do I simply remove the state abbreviations?
Here is the replication code:
library(choroplethr)
library(choroplethrMaps)
data(df_pop_state)
df_pop_state$value <- as.numeric(df_pop_state$value)
state_choropleth(df_pop_state, num_colors = 1,
title = "2012 State Population Estimates",
legend = "Population")


Thank you for using choroplethr. Note that Choroplethr uses R6 Objects. In fact, the
state_choroplethfunction is just a convenience wrapper for theStateChoroplethR6 object:If you look at the source code you will see that there is a field on the object that does what you want:
show_labels. It defaults toTRUE.We can get the result you want by simply creating your map using the
StateChoroplethobject (not the function) and settingshow_labelstoFALSE.I chose this approach because, in general, I found that many functions in R have a large number of parameters, and that can be confusing. The downside is that functions are easier to document than objects (especially in R), so questions like this frequently come up.