There are a number of geographic entities you can use in geographic maps in Displayr. Unfortunately, you may not know in advance which ones are available or how to spell them. This article provides you with the code you need to access a complete list of the geographic entities you can use in your maps.
Method
For an exhaustive list of geographic entities available, use following R code:
library(flipStandardCharts)
CountriesOrContinents("country") # list the countries of the world
CountriesOrContinents("continent") # list the continents
StatesInCountry("Italy") # list the states in a country
ZipcodesInCountry("UK") # list the zip/post codes in a country
AreasInCountry("Australia") # list the areas in a country
For example, you would use the following code for a complete list of countries in the world:
library(flipStandardCharts)
CountriesOrContinents("country") # list the continents
A portion of the output is shown below:
Next
How to Create a Geographic Map