Last updated on 2025-09-13 13:50:14 CEST.
Package | ERROR | NOTE | OK |
---|---|---|---|
doconv | 13 | ||
equatags | 13 | ||
flextable | 1 | 12 | |
fpeek | 13 | ||
gdtools | 1 | 12 | |
ggiraph | 5 | 2 | 6 |
locatexec | 2 | 11 | |
mschart | 13 | ||
officedown | 13 | ||
officer | 13 | ||
rvg | 13 |
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: ERROR: 1, OK: 12
Version: 0.9.10
Check: examples
Result: ERROR
Running examples in 'flextable-Ex.R' failed
The error most likely occurred in:
> ### Name: as_flextable.gam
> ### Title: Transform a 'gam' model into a flextable
> ### Aliases: as_flextable.gam
>
> ### ** Examples
>
> if (require("mgcv")) {
+ set.seed(2)
+
+ # Simulated data
+ dat <- gamSim(1, n = 400, dist = "normal", scale = 2)
+
+ # basic GAM model
+ b <- gam(y ~ s(x0) + s(x1) + s(x2) + s(x3), data = dat)
+
+ ft <- as_flextable(b)
+ ft
+ }
Loading required package: mgcv
Loading required package: nlme
This is mgcv 1.9-3. For overview type 'help("mgcv-package")'.
Gu & Wahba 4 term additive model
Error in ll(object) : could not find function "ll"
Calls: as_flextable ... as_flextable.gam -> glance_gam -> AIC -> AIC.default
Execution halted
Flavor: r-devel-windows-x86_64
Version: 0.9.10
Check: tests
Result: ERROR
Running 'testthat.R' [54s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> library(testthat)
>
> test_check("flextable")
Loading required package: flextable
Attaching package: 'xtable'
The following object is masked from 'package:flextable':
align
This is mgcv 1.9-3. For overview type 'help("mgcv-package")'.
Gu & Wahba 4 term additive model
Loading required package: pdftools
Using poppler version 25.05.0
[ FAIL 2 | WARN 0 | SKIP 1 | PASS 417 ]
══ Skipped tests (1) ═══════════════════════════════════════════════════════════
• do_manual_msoffice_snapshot_testing is not TRUE (1): 'test-borders.R:3:1'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-as_flextable.R:86:3'): glm and lm ──────────────────────────────
Error in `ll(object)`: could not find function "ll"
Backtrace:
▆
1. ├─flextable::as_flextable(lmod) at test-as_flextable.R:86:3
2. ├─flextable:::as_flextable.lm(lmod)
3. │ ├─broom::glance(x)
4. │ └─broom:::glance.lm(x)
5. │ ├─base::with(...)
6. │ └─base::with.default(...)
7. │ └─base::eval(substitute(expr), data, enclos = parent.frame())
8. │ └─base::eval(substitute(expr), data, enclos = parent.frame())
9. │ └─tibble::tibble(...)
10. │ └─tibble:::tibble_quos(xs, .rows, .name_repair)
11. │ └─rlang::eval_tidy(xs[[j]], mask)
12. ├─stats::AIC(x)
13. └─stats:::AIC.default(x)
── Error ('test-as_flextable.R:479:3'): gam models ─────────────────────────────
Error in `ll(object)`: could not find function "ll"
Backtrace:
▆
1. ├─flextable::as_flextable(b) at test-as_flextable.R:479:3
2. └─flextable:::as_flextable.gam(b)
3. └─flextable:::glance_gam(x)
4. ├─stats::AIC(model)
5. └─stats:::AIC.default(model)
[ FAIL 2 | WARN 0 | SKIP 1 | PASS 417 ]
Error: Test failures
Execution halted
Flavor: r-devel-windows-x86_64
Current CRAN status: OK: 13
Current CRAN status: NOTE: 1, OK: 12
Version: 0.4.3
Check: installed package size
Result: NOTE
installed size is 6.9Mb
sub-directories of 1Mb or more:
libs 6.7Mb
Flavor: r-oldrel-windows-x86_64
Current CRAN status: ERROR: 5, NOTE: 2, OK: 6
Version: 0.9.0
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_bar_interactive
> ### Title: Create interactive bars
> ### Aliases: geom_bar_interactive geom_col_interactive
>
> ### ** Examples
>
> # add interactive bar -------
> library(ggplot2)
> library(ggiraph)
>
> p <- ggplot(mpg, aes(x = class, tooltip = class, data_id = class)) +
+ geom_bar_interactive()
>
> x <- girafe(ggobj = p)
> if (interactive()) {
+ print(x)
+ }
>
> dat <- data.frame(
+ name = c("David", "Constance", "Leonie"),
+ gender = c("Male", "Female", "Female"),
+ height = c(172, 159, 71)
+ )
> p <- ggplot(dat, aes(x = name, y = height, tooltip = gender, data_id = name)) +
+ geom_col_interactive()
>
> x <- girafe(ggobj = p)
Error:
! Problem while converting geom to grob.
ℹ Error occurred in the 1st layer.
Caused by error in `draw_panel()`:
! unused arguments (lineend = "butt", linejoin = "mitre")
Backtrace:
▆
1. ├─ggiraph::girafe(ggobj = p)
2. │ ├─base::tryCatch(...)
3. │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
4. │ ├─base::print(ggobj)
5. │ └─ggplot2 (local) `print.ggplot2::ggplot`(ggobj)
6. │ ├─ggplot2::ggplot_gtable(data)
7. │ └─ggplot2 (local) `ggplot_gtable.ggplot2::ggplot_built`(data)
8. │ └─ggplot2:::by_layer(...)
9. │ ├─rlang::try_fetch(...)
10. │ │ ├─base::tryCatch(...)
11. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
12. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
13. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler)
14. │ │ └─base::withCallingHandlers(...)
15. │ └─ggplot2 (local) f(l = layers[[i]], d = data[[i]])
16. │ └─l$draw_geom(d, layout)
17. │ └─ggplot2 (local) draw_geom(..., self = self)
18. │ └─self$geom$draw_layer(...)
19. │ └─ggplot2 (local) draw_layer(..., self = self)
20. │ └─base::lapply(...)
21. │ └─ggplot2 (local) FUN(X[[i]], ...)
22. │ ├─rlang::inject(self$draw_panel(data, panel_params, coord, !!!params))
23. │ └─self$draw_panel(...)
24. └─base::.handleSimpleError(...)
25. └─rlang (local) h(simpleError(msg, call))
26. └─handlers[[1L]](cnd)
27. └─cli::cli_abort(...)
28. └─rlang::abort(...)
Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 0.9.0
Check: examples
Result: ERROR
Running examples in ‘ggiraph-Ex.R’ failed
The error most likely occurred in:
> ### Name: geom_bar_interactive
> ### Title: Create interactive bars
> ### Aliases: geom_bar_interactive geom_col_interactive
>
> ### ** Examples
>
> # add interactive bar -------
> library(ggplot2)
> library(ggiraph)
>
> p <- ggplot(mpg, aes(x = class, tooltip = class, data_id = class)) +
+ geom_bar_interactive()
>
> x <- girafe(ggobj = p)
> if (interactive()) {
+ print(x)
+ }
>
> dat <- data.frame(
+ name = c("David", "Constance", "Leonie"),
+ gender = c("Male", "Female", "Female"),
+ height = c(172, 159, 71)
+ )
> p <- ggplot(dat, aes(x = name, y = height, tooltip = gender, data_id = name)) +
+ geom_col_interactive()
>
> x <- girafe(ggobj = p)
Error:
! Problem while converting geom to grob.
ℹ Error occurred in the 1st layer.
Caused by error in `draw_panel()`:
! unused arguments (lineend = "butt", linejoin = "mitre")
Backtrace:
▆
1. ├─ggiraph::girafe(ggobj = p)
2. │ ├─base::tryCatch(...)
3. │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
4. │ ├─base::print(ggobj)
5. │ └─ggplot2 (local) `print.ggplot2::ggplot`(ggobj)
6. │ ├─ggplot2::ggplot_gtable(data)
7. │ └─ggplot2 (local) `ggplot_gtable.ggplot2::ggplot_built`(data)
8. │ └─ggplot2:::by_layer(...)
9. │ ├─rlang::try_fetch(...)
10. │ │ ├─base::tryCatch(...)
11. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
12. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
13. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler)
14. │ │ └─base::withCallingHandlers(...)
15. │ └─ggplot2 (local) f(l = layers[[i]], d = data[[i]])
16. │ └─l$draw_geom(d, layout)
17. │ └─ggplot2 (local) draw_geom(..., self = self)
18. │ └─self$geom$draw_layer(...)
19. │ └─ggplot2 (local) draw_layer(..., self = self)
20. │ └─base::lapply(...)
21. │ └─ggplot2 (local) FUN(X[[i]], ...)
22. │ ├─rlang::inject(self$draw_panel(data, panel_params, coord, !!!params))
23. │ └─self$draw_panel(...)
24. └─base::.handleSimpleError(...)
25. └─rlang (local) h(simpleError(msg, call))
26. └─handlers[[1L]](cnd)
27. └─cli::cli_abort(...)
28. └─rlang::abort(...)
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-oldrel-windows-x86_64
Version: 0.9.0
Check: installed package size
Result: NOTE
installed size is 6.3Mb
sub-directories of 1Mb or more:
libs 4.2Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: NOTE: 2, OK: 11
Version: 0.1.1
Check: for detritus in the temp directory
Result: NOTE
Found the following files/directories:
‘node-compile-cache’
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: OK: 13