tmap
is an actively maintained open-source R-library for drawing thematic maps, written by Martijn Tennekes. The API is based on A Layered Grammar of Graphics by Hadley Wickham and resembles the syntax of ggplot2
, a popular R-library for drawing charts.
tmap
is available on CRAN (the latest version is 1.11, published on 2017-11-24). Installation is straightforward:
install.packages("tmap")
However, for some operating systems require additional libraries. The installation procedure is as follows:
Windows No additional installation required.
Linux (Ubuntu) See installation script.
macOS See http://www.kyngchaos.com
The latest development version can be installed using devtools
. In order to use the development version of tmap
, it is recommended to use the development version of tmaptools
as well (see tmaptools)
library(devtools)
install_github("mtennekes/tmaptools")
install_github("mtennekes/tmap")
See NEWS for the latest features and improvements and the issue list for discussions of enhancements and bugs.
Do you want to help with the development of the package? Please let me know! Any feedback, requests, tips, or bug reports are welcome!
library(tmap)
tmap modes: plot and interactive view
Example 4: Obesity in the United States
Example 5: Crimes in Greater London
- tmap: creating thematic maps in a flexible way (useR!2015)
- Exploring and presenting maps with tmap (useR!2017) (Abstract) (Presentation)
- Computer World: Mapping in R just got a whole lot easier
- National Socio-Environmental Synthesis Center: Maps in R
- Introduction to visualising spatial data in R
- Blog post StatialControl
- Blog post TWIAV
- Computer World: Create maps in R in 10 (fairly) easy steps
- Computer World: Great R packages for data import, wrangling and visualization
- Tutorial Visualising spatial data: from base to shiny - workshop
- Stack Overflow questions (#tmap)
There are two main places to get help with tmap:
- stackoverflow is a great source of answers to common tmap questions. It is also a great place to get help, once you have created a reproducible example that illustrates your problem. Please tag your questions with tmap.
- If you have a request or if think your problem is caused by a bug, please open an issue, preferably with are reproducible example.