Jakub
Jakub
@mtennekes -- is this behavior expected? ``` r library(tmap) library(spData) nz$val = c(rep(1, 8), rep(2, 8)) tm_shape(nz) + tm_polygons(fill = "val", fill.scale = tm_scale_discrete()) ``` 
Do I remember that the colors were explained in R console in the previous version? It would be good to add them again (also possibly with some suggestions on how...
``` r library(tmap) # does not work tmap_options(legend.frame = FALSE) tm_shape(World) + tm_polygons(fill = "HPI") ```  ``` r # does not work tm_shape(World) + tm_polygons(fill = "HPI") + tm_layout(legend.frame...
@mtennekes -- see the example below. My assumption is that the panel title would always be shown when the `tm_facets()` is applied (consistency). ``` r library(tmap) tm_shape(World) + tm_polygons() +...
@mtennekes see my reprex: ``` r library(tmap) # works tm_shape(NLD_muni) + tm_borders(lwd = 3) + tm_facets(by = "province", drop.units = FALSE) ```  ``` r # works tm_shape(NLD_muni) + tm_dots()...
It would be great if it would render the animation directly in the qmd/rmd output. ``` r library(tmap) library(spData) tm_shape(nz) + tm_polygons() + tm_animate("Name") ```
Hi @mhesselbarth -- I've noticed that `lsm_p_frac()` behaves strangely on square patches. In the example below, when I change the resolution of the raster all of the results are the...
Since a few versions the namer package allows to add chunk names to the qmd documents (https://github.com/jumpingrivers/namer/blob/789d363118de89dd04454aea5f333c8fdc5f6052/NEWS.md). However, it only uses "the RMarkdown style" (chunks are named inside the code...