- using R version 4.5.2 Patched (2026-01-31 r89374)
- using platform: x86_64-pc-linux-gnu
- R was compiled by
gcc-14 (Debian 14.3.0-10) 14.3.0
GNU Fortran (Debian 14.3.0-10) 14.3.0
- running under: Debian GNU/Linux forky/sid
- using session charset: UTF-8
- checking for file ‘dbplot/DESCRIPTION’ ... OK
- this is package ‘dbplot’ version ‘0.3.3’
- package encoding: UTF-8
- checking package namespace information ... OK
- checking package dependencies ... OK
- checking if this is a source package ... OK
- checking if there is a namespace ... OK
- checking for executable files ... OK
- checking for hidden files and directories ... OK
- checking for portable file names ... OK
- checking for sufficient/correct file permissions ... OK
- checking serialization versions ... OK
- checking whether package ‘dbplot’ can be installed ... OK
See the install log for details.
- checking package directory ... OK
- checking for future file timestamps ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [2s/3s] OK
- checking whether the package can be loaded with stated dependencies ... [1s/2s] OK
- checking whether the package can be unloaded cleanly ... [1s/2s] OK
- checking whether the namespace can be loaded with stated dependencies ... [1s/2s] OK
- checking whether the namespace can be unloaded cleanly ... [2s/2s] OK
- checking loading without being on the library search path ... [2s/2s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [9s/12s] OK
- checking Rd files ... [0s/0s] OK
- checking Rd metadata ... OK
- checking Rd line widths ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking examples ... [2s/3s] ERROR
Running examples in ‘dbplot-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: db_compute_boxplot
> ### Title: Returns a dataframe with boxplot calculations
> ### Aliases: db_compute_boxplot
>
> ### ** Examples
>
>
> mtcars %>%
+ db_compute_boxplot(am, mpg)
Error:
! The `add` argument of `group_by()` was deprecated in dplyr 1.0.0 and
is now defunct.
ℹ Please use the `.add` argument instead.
Backtrace:
▆
1. ├─mtcars %>% db_compute_boxplot(am, mpg)
2. └─dbplot::db_compute_boxplot(., am, mpg)
3. ├─dplyr::group_by(data, !!!x, add = TRUE)
4. └─dplyr:::group_by.data.frame(data, !!!x, add = TRUE)
5. └─dplyr::group_by_prepare(.data, ..., .add = .add, error_call = current_env())
6. └─lifecycle::deprecate_stop("1.0.0", "group_by(add = )", "group_by(.add = )")
7. └─lifecycle:::deprecate_stop0(msg)
8. └─rlang::cnd_signal(...)
Execution halted
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [4s/5s] ERROR
Running ‘testthat.R’ [4s/5s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> library(testthat)
> library(dbplot)
> library(dplyr)
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
> library(ggplot2)
>
> test_check("dbplot")
Saving _problems/test-boxplots-4.R
Saving _problems/test-boxplots-8.R
[ FAIL 2 | WARN 0 | SKIP 0 | PASS 26 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-boxplots.R:4:3'): dbplot_boxplot() returns a ggplot ────────────
<lifecycle_error_deprecated/defunctError/rlang_error/error/condition>
Error: The `add` argument of `group_by()` was deprecated in dplyr 1.0.0 and is
now defunct.
ℹ Please use the `.add` argument instead.
Backtrace:
▆
1. ├─testthat::expect_is(dbplot_boxplot(mtcars, am, mpg), "ggplot") at test-boxplots.R:4:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. └─dbplot:::dbplot_boxplot(mtcars, am, mpg)
5. └─dbplot::db_compute_boxplot(...)
6. ├─dplyr::group_by(data, !!!x, add = TRUE)
7. └─dplyr:::group_by.data.frame(data, !!!x, add = TRUE)
8. └─dplyr::group_by_prepare(.data, ..., .add = .add, error_call = current_env())
9. └─lifecycle::deprecate_stop("1.0.0", "group_by(add = )", "group_by(.add = )")
10. └─lifecycle:::deprecate_stop0(msg)
11. └─rlang::cnd_signal(...)
── Error ('test-boxplots.R:8:3'): db_compute_boxplot() returns the right number of rows ──
<lifecycle_error_deprecated/defunctError/rlang_error/error/condition>
Error: The `add` argument of `group_by()` was deprecated in dplyr 1.0.0 and is
now defunct.
ℹ Please use the `.add` argument instead.
Backtrace:
▆
1. ├─testthat::expect_equal(...) at test-boxplots.R:8:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─base::nrow(db_compute_boxplot(mtcars, am, mpg))
5. └─dbplot::db_compute_boxplot(mtcars, am, mpg)
6. ├─dplyr::group_by(data, !!!x, add = TRUE)
7. └─dplyr:::group_by.data.frame(data, !!!x, add = TRUE)
8. └─dplyr::group_by_prepare(.data, ..., .add = .add, error_call = current_env())
9. └─lifecycle::deprecate_stop("1.0.0", "group_by(add = )", "group_by(.add = )")
10. └─lifecycle:::deprecate_stop0(msg)
11. └─rlang::cnd_signal(...)
[ FAIL 2 | WARN 0 | SKIP 0 | PASS 26 ]
Error:
! Test failures.
Execution halted
- checking PDF version of manual ... [4s/7s] OK
- checking HTML version of manual ... [0s/1s] OK
- checking for non-standard things in the check directory ... OK
- DONE
Status: 2 ERRORs