Last updated on 2025-08-21 21:50:12 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.8.13 | 70.75 | 135.37 | 206.12 | ERROR | |
r-devel-linux-x86_64-debian-gcc | 0.9.0 | 46.45 | 118.44 | 164.89 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.9.0 | 443.57 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.9.0 | 358.51 | OK | |||
r-devel-windows-x86_64 | 0.9.0 | 88.00 | 206.00 | 294.00 | OK | |
r-patched-linux-x86_64 | 0.9.0 | 66.40 | 165.80 | 232.20 | OK | |
r-release-linux-x86_64 | 0.8.13 | 65.28 | 163.44 | 228.72 | OK | |
r-release-macos-arm64 | 0.9.0 | 152.00 | OK | |||
r-release-macos-x86_64 | 0.9.0 | 275.00 | OK | |||
r-release-windows-x86_64 | 0.9.0 | 90.00 | 213.00 | 303.00 | OK | |
r-oldrel-macos-arm64 | 0.8.13 | 109.00 | NOTE | |||
r-oldrel-macos-x86_64 | 0.9.0 | 242.00 | NOTE | |||
r-oldrel-windows-x86_64 | 0.9.0 | 94.00 | 263.00 | 357.00 | OK |
Version: 0.8.13
Check: examples
Result: ERROR
Running examples in ‘ggiraph-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: geom_sf_interactive
> ### Title: Create interactive sf objects
> ### Aliases: geom_sf_interactive geom_sf_label_interactive
> ### geom_sf_text_interactive
>
> ### ** Examples
>
> # add interactive sf objects to a ggplot -------
> library(ggplot2)
> library(ggiraph)
>
> ## original code: see section examples of ggplot2::geom_sf help file
> if (requireNamespace("sf",
+ quietly = TRUE,
+ versionCheck = c(op = ">=", version = "0.7-3"))) {
+ nc <- sf::st_read(system.file("shape/nc.shp", package = "sf"), quiet = TRUE)
+ gg <- ggplot(nc) +
+ geom_sf_interactive(aes(fill = AREA, tooltip = NAME, data_id = NAME))
+ x <- girafe(ggobj = gg)
+ if( interactive() ) print(x)
+
+ nc_3857 <- sf::st_transform(nc, "+init=epsg:3857")
+
+ # Unfortunately if you plot other types of feature you'll need to use
+ # show.legend to tell ggplot2 what type of legend to use
+ nc_3857$mid <- sf::st_centroid(nc_3857$geometry)
+ gg <- ggplot(nc_3857) +
+ geom_sf(colour = "white") +
+ geom_sf_interactive(aes(geometry = mid,
+ size = AREA, tooltip = NAME, data_id = NAME),
+ show.legend = "point")
+ x <- girafe( ggobj = gg)
+ if( interactive() ) print(x)
+
+ # Example with texts.
+ gg <- ggplot(nc_3857[1:3, ]) +
+ geom_sf(aes(fill = AREA)) +
+ geom_sf_text_interactive(aes(label = NAME, tooltip = NAME), color="white")
+ x <- girafe( ggobj = gg)
+ if( interactive() ) print(x)
+
+ # Example with labels.
+ gg <- ggplot(nc_3857[1:3, ]) +
+ geom_sf(aes(fill = AREA)) +
+ geom_sf_label_interactive(aes(label = NAME, tooltip = NAME))
+ x <- girafe( ggobj = gg)
+ if( interactive() ) print(x)
+ }
Error in loadNamespace(package, ...) :
'versionCheck' must be NULL or list with components 'op' and 'version'
Calls: requireNamespace
Execution halted
Flavor: r-devel-linux-x86_64-debian-clang
Version: 0.8.13
Check: installed package size
Result: NOTE
installed size is 6.3Mb
sub-directories of 1Mb or more:
libs 4.2Mb
Flavor: r-oldrel-macos-arm64
Version: 0.9.0
Check: installed package size
Result: NOTE
installed size is 6.3Mb
sub-directories of 1Mb or more:
libs 4.3Mb
Flavor: r-oldrel-macos-x86_64