Last updated on 2025-12-06 00:48:43 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 4.0.1 | 34.33 | 790.96 | 825.29 | OK | |
| r-devel-linux-x86_64-debian-gcc | 4.0.1 | 22.13 | 270.13 | 292.26 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 4.0.1 | 62.00 | 1197.10 | 1259.10 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 4.0.1 | 84.00 | 1093.62 | 1177.62 | OK | |
| r-devel-windows-x86_64 | 4.0.1 | 42.00 | 729.00 | 771.00 | OK | |
| r-patched-linux-x86_64 | 4.0.1 | 43.21 | 732.16 | 775.37 | OK | |
| r-release-linux-x86_64 | 4.0.1 | 32.78 | 730.85 | 763.63 | OK | |
| r-release-macos-arm64 | 4.0.0 | 14.00 | 129.00 | 143.00 | OK | |
| r-release-macos-x86_64 | 4.0.1 | 33.00 | 536.00 | 569.00 | OK | |
| r-release-windows-x86_64 | 4.0.1 | 45.00 | 711.00 | 756.00 | OK | |
| r-oldrel-macos-arm64 | 4.0.1 | 8.00 | 134.00 | 142.00 | NOTE | |
| r-oldrel-macos-x86_64 | 4.0.1 | 35.00 | 593.00 | 628.00 | NOTE | |
| r-oldrel-windows-x86_64 | 4.0.1 | 58.00 | 935.00 | 993.00 | NOTE |
Version: 4.0.1
Check: package dependencies
Result: WARN
Cannot process vignettes
Packages suggested but not available for checking:
'covr', 'Hmisc', 'knitr', 'profvis', 'quarto', 'roxygen2', 'sf'
VignetteBuilder package required for checking but not installed: ‘quarto’
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 4.0.1
Check: examples
Result: ERROR
Running examples in ‘ggplot2-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: geom_map
> ### Title: Polygons from a reference map
> ### Aliases: geom_map
>
> ### ** Examples
>
> # First, a made-up example containing a few polygons, to explain
> # how `geom_map()` works. It requires two data frames:
> # One contains the coordinates of each polygon (`positions`), and is
> # provided via the `map` argument. The other contains the
> # values associated with each polygon (`values`). An id
> # variable links the two together.
>
> ids <- factor(c("1.1", "2.1", "1.2", "2.2", "1.3", "2.3"))
>
> values <- data.frame(
+ id = ids,
+ value = c(3, 3.1, 3.1, 3.2, 3.15, 3.5)
+ )
>
> positions <- data.frame(
+ id = rep(ids, each = 4),
+ x = c(2, 1, 1.1, 2.2, 1, 0, 0.3, 1.1, 2.2, 1.1, 1.2, 2.5, 1.1, 0.3,
+ 0.5, 1.2, 2.5, 1.2, 1.3, 2.7, 1.2, 0.5, 0.6, 1.3),
+ y = c(-0.5, 0, 1, 0.5, 0, 0.5, 1.5, 1, 0.5, 1, 2.1, 1.7, 1, 1.5,
+ 2.2, 2.1, 1.7, 2.1, 3.2, 2.8, 2.1, 2.2, 3.3, 3.2)
+ )
>
> ggplot(values) +
+ geom_map(aes(map_id = id), map = positions) +
+ expand_limits(positions)
> ggplot(values, aes(fill = value)) +
+ geom_map(aes(map_id = id), map = positions) +
+ expand_limits(positions)
> ggplot(values, aes(fill = value)) +
+ geom_map(aes(map_id = id), map = positions) +
+ expand_limits(positions) + ylim(0, 3)
>
> # Now some examples with real maps
> if (require(maps)) {
+
+ crimes <- data.frame(state = tolower(rownames(USArrests)), USArrests)
+
+ # Equivalent to crimes |> tidyr::pivot_longer(Murder:Rape)
+ vars <- lapply(names(crimes)[-1], function(j) {
+ data.frame(state = crimes$state, variable = j, value = crimes[[j]])
+ })
+ crimes_long <- do.call("rbind", vars)
+
+ states_map <- map_data("state")
+
+ # without geospatial coordinate system, the resulting plot
+ # looks weird
+ ggplot(crimes, aes(map_id = state)) +
+ geom_map(aes(fill = Murder), map = states_map) +
+ expand_limits(x = states_map$long, y = states_map$lat)
+
+ # in combination with `coord_sf()` we get an appropriate result
+ ggplot(crimes, aes(map_id = state)) +
+ geom_map(aes(fill = Murder), map = states_map) +
+ # crs = 5070 is a Conus Albers projection for North America,
+ # see: https://epsg.io/5070
+ # default_crs = 4326 tells coord_sf() that the input map data
+ # are in longitude-latitude format
+ coord_sf(
+ crs = 5070, default_crs = 4326,
+ xlim = c(-125, -70), ylim = c(25, 52)
+ )
+
+ ggplot(crimes_long, aes(map_id = state)) +
+ geom_map(aes(fill = value), map = states_map) +
+ coord_sf(
+ crs = 5070, default_crs = 4326,
+ xlim = c(-125, -70), ylim = c(25, 52)
+ ) +
+ facet_wrap(~variable)
+ }
Loading required package: maps
Error in loadNamespace(x) : there is no package called ‘sf’
Calls: coord_sf ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 4.0.1
Check: package vignettes
Result: NOTE
Package has ‘vignettes’ subdirectory but apparently no vignettes.
Perhaps the ‘VignetteBuilder’ information is missing from the
DESCRIPTION file?
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 4.0.1
Check: HTML version of manual
Result: NOTE
Skipping checking math rendering: package 'V8' unavailable
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 4.0.1
Check: installed package size
Result: NOTE
installed size is 13.0Mb
sub-directories of 1Mb or more:
R 3.1Mb
doc 7.4Mb
help 1.5Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64