Last updated on 2024-11-03 15:48:28 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 3.5.1 | 29.59 | 454.72 | 484.31 | NOTE | |
r-devel-linux-x86_64-debian-gcc | 3.5.1 | 1.12 | 3.38 | 4.50 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 3.5.1 | 770.71 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 3.5.1 | 779.70 | OK | |||
r-devel-windows-x86_64 | 3.5.1 | 32.00 | 453.00 | 485.00 | NOTE | |
r-patched-linux-x86_64 | 3.5.1 | 43.08 | 422.45 | 465.53 | OK | |
r-release-linux-x86_64 | 3.5.1 | 27.99 | 328.70 | 356.69 | ERROR | |
r-release-macos-arm64 | 3.5.1 | 200.00 | NOTE | |||
r-release-macos-x86_64 | 3.5.1 | 324.00 | NOTE | |||
r-release-windows-x86_64 | 3.5.1 | 30.00 | 576.00 | 606.00 | NOTE | |
r-oldrel-macos-arm64 | 3.5.1 | 186.00 | NOTE | |||
r-oldrel-macos-x86_64 | 3.5.1 | 503.00 | NOTE | |||
r-oldrel-windows-x86_64 | 3.5.1 | 38.00 | 586.00 | 624.00 | NOTE |
Version: 3.5.1
Check: Rd cross-references
Result: NOTE
Found the following Rd file(s) with Rd \link{} targets missing package
anchors:
ggplot2-ggproto.Rd: gtable
ggplot_gtable.Rd: gtable
Please provide package anchors for all Rd \link{} targets not in the
package itself and the base packages.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-windows-x86_64
Version: 3.5.1
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 3.5.1
Check: package dependencies
Result: NOTE
Package suggested but not available for checking: ‘sf’
Flavor: r-release-linux-x86_64
Version: 3.5.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
> # other 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-release-linux-x86_64
Version: 3.5.1
Check: HTML version of manual
Result: NOTE
Skipping checking math rendering: package 'V8' unavailable
Flavor: r-release-linux-x86_64
Version: 3.5.1
Check: installed package size
Result: NOTE
installed size is 6.5Mb
sub-directories of 1Mb or more:
R 2.1Mb
doc 2.3Mb
help 1.1Mb
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64