Arrange small multiples in a grid layout. Normally, small multiples are created by specifying multiple variables for one aesthetic or by specifying the by argument (see tm_facets
). This function can be used to arrange custom small multiples in a grid layout.
tmap_arrange(..., ncol = NA, nrow = NA, sync = FALSE, asp = 0,
outer.margins = 0.02)knit_print.tmap_arrange(x, ..., options = NULL)
# S3 method for tmap_arrange
print(x, knit = FALSE, ..., options = NULL)
number of columns
number of rows
logical. Should the navigation in view mode (zooming and panning) be synchronized? By default FALSE
.
aspect ratio. The aspect ratio of each map. Normally, this is controlled by the asp
argument from tm_layout
(also a tmap option). This argument will overwrite it, unless set to NULL
. The default value for asp
is 0, which means that the aspect ratio is adjusted to the size of the device divided by the number of columns and rows. When asp
is set to NA
, which is also the default value for tm_layout
, the aspect ratio will be adjusted to the used shapes.
outer.margins, numeric vector four or a single value. If defines the outer margins for each multiple. If will overwrite the outer.margins
argument from tm_layout
, unless set to NULL
.
a tmap_arrange
object (returned from tmap_arrange
)
options passed on to knitprint
should knit_print
be enabled, or the normal print
function?
The global option tmap.limits
controls the limit of the number of facets that are plotted. By default, tmap_options(tmap.limits=c(facets.view=4, facets.plot=64))
. The maximum number of interactive facets is set to four since otherwise it may become very slow.
# NOT RUN { data(World) w1 <- qtm(World, projection = "eck4", title="Eckert IV") w2 <- qtm(World, projection = "merc", title="Mercator") w3 <- qtm(World, projection = "gall", title="Gall stereographic") w4 <- qtm(World, projection = "robin", title="Robinsin") current.mode <- tmap_mode("plot") tmap_arrange(w1, w2, w3, w4) tmap_mode(current.mode) # }