Last updated on 2026-03-11 01:53:27 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.2.0 | 10.87 | 167.16 | 178.03 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.2.0 | 7.48 | 111.06 | 118.54 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.2.0 | 19.00 | 247.77 | 266.77 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.2.0 | 18.00 | 246.29 | 264.29 | OK | |
| r-devel-macos-arm64 | 1.2.0 | 3.00 | 46.00 | 49.00 | OK | |
| r-devel-windows-x86_64 | 1.2.0 | 18.00 | 138.00 | 156.00 | ERROR | |
| r-patched-linux-x86_64 | 1.2.0 | 10.80 | 147.21 | 158.01 | OK | |
| r-release-linux-x86_64 | 1.2.0 | 9.61 | 112.70 | 122.31 | ERROR | |
| r-release-macos-arm64 | 1.2.0 | 3.00 | 44.00 | 47.00 | OK | |
| r-release-macos-x86_64 | 1.2.0 | 10.00 | 482.00 | 492.00 | OK | |
| r-release-windows-x86_64 | 1.2.0 | 15.00 | 244.00 | 259.00 | OK | |
| r-oldrel-macos-arm64 | 1.2.0 | 3.00 | 47.00 | 50.00 | OK | |
| r-oldrel-macos-x86_64 | 1.2.0 | 10.00 | 441.00 | 451.00 | OK | |
| r-oldrel-windows-x86_64 | 1.2.0 | 19.00 | 215.00 | 234.00 | OK |
Version: 1.2.0
Check: examples
Result: ERROR
Running examples in 'evprof-Ex.R' failed
The error most likely occurred in:
> ### Name: cut_sessions
> ### Title: Cut outliers based on minimum and maximum limits of
> ### ConnectionHours and ConnectionStartDateTime variables
> ### Aliases: cut_sessions
>
> ### ** Examples
>
> 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
> # Localize the outlying sessions above a certain threshold
> california_ev_sessions %>%
+ sample_frac(0.05) %>%
+ plot_points(start = 3)
Warning: Removed 3 rows containing missing values or values outside the scale range
(`geom_point()`).
>
> # For example sessions that start before 5 AM or that are
> # longer than 20 hours are considered outliers
> sessions_clean <- california_ev_sessions %>%
+ sample_frac(0.05) %>%
+ cut_sessions(
+ start = 3,
+ connection_hours_max = 20,
+ connection_start_min = 5
+ )
> plot_points(sessions_clean, start = 3)
Error in if (any(hour(time_dt) < start)) { :
missing value where TRUE/FALSE needed
Calls: plot_points -> convert_time_dt_to_plot_dt
Execution halted
Flavor: r-devel-windows-x86_64
Version: 1.2.0
Check: tests
Result: ERROR
Running 'spelling.R' [0s]
Running 'testthat.R' [29s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/tests.html
> # * https://testthat.r-lib.org/reference/test_package.html#special-files
>
> library(testthat)
> library(evprof)
>
> test_check("evprof")
Saving _problems/test-preprocessing-36.R
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
Trying with MinPts = 200 and eps = 3.3
Too much nosie (18 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 4.95
Solution found: MinPts= 200 , eps = 4.95
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
The considered time-cycles are:
|Timecycle |months |wdays |
|:---------|:------|:-----|
|1 |1-12 |1-5 |
|2 |1-12 |6-7 |
[ FAIL 1 | WARN 0 | SKIP 4 | PASS 48 ]
══ Skipped tests (4) ═══════════════════════════════════════════════════════════
• On CRAN (4): 'test-clustering.R:16:3', 'test-clustering.R:26:3',
'test-modelling.R:104:3', 'test-modelling.R:135:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-preprocessing.R:34:3'): kNN plots ──────────────────────────────
Error in `kNN(x, k, sort = TRUE, ...)`: data/distances cannot contain NAs for kNN (with kd-tree)!
Backtrace:
▆
1. ├─testthat::expect_true(...) at test-preprocessing.R:34:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─ggplot2::is_ggplot(plot_kNNdist(sessions, log = FALSE))
5. │ └─S7::S7_inherits(x, class_ggplot)
6. ├─evprof::plot_kNNdist(sessions, log = FALSE)
7. │ ├─ggplot2::ggplot(...)
8. │ └─tibble::tibble(...)
9. │ └─tibble:::tibble_quos(xs, .rows, .name_repair)
10. │ └─rlang::eval_tidy(xs[[j]], mask)
11. ├─base::sort(...)
12. └─dbscan::kNNdist(...)
13. └─dbscan::kNN(x, k, sort = TRUE, ...)
[ FAIL 1 | WARN 0 | SKIP 4 | PASS 48 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-windows-x86_64
Version: 1.2.0
Check: examples
Result: ERROR
Running examples in ‘evprof-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: cut_sessions
> ### Title: Cut outliers based on minimum and maximum limits of
> ### ConnectionHours and ConnectionStartDateTime variables
> ### Aliases: cut_sessions
>
> ### ** Examples
>
> 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
> # Localize the outlying sessions above a certain threshold
> california_ev_sessions %>%
+ sample_frac(0.05) %>%
+ plot_points(start = 3)
Warning: Removed 3 rows containing missing values or values outside the scale range
(`geom_point()`).
>
> # For example sessions that start before 5 AM or that are
> # longer than 20 hours are considered outliers
> sessions_clean <- california_ev_sessions %>%
+ sample_frac(0.05) %>%
+ cut_sessions(
+ start = 3,
+ connection_hours_max = 20,
+ connection_start_min = 5
+ )
> plot_points(sessions_clean, start = 3)
Error in if (any(hour(time_dt) < start)) { :
missing value where TRUE/FALSE needed
Calls: plot_points -> convert_time_dt_to_plot_dt
Execution halted
Flavor: r-release-linux-x86_64
Version: 1.2.0
Check: tests
Result: ERROR
Running ‘spelling.R’ [0s/0s]
Running ‘testthat.R’ [25s/31s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/tests.html
> # * https://testthat.r-lib.org/reference/test_package.html#special-files
>
> library(testthat)
> library(evprof)
>
> test_check("evprof")
Saving _problems/test-preprocessing-36.R
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
Trying with MinPts = 200 and eps = 3.3
Too much nosie (18 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 4.95
Solution found: MinPts= 200 , eps = 4.95
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
Trying with MinPts = 200 and eps = 0.66
Too much nosie (4 %). Consider a higher eps.
Trying with MinPts = 200 and eps = 0.99
Solution found: MinPts= 200 , eps = 0.99
The considered time-cycles are:
|Timecycle |months |wdays |
|:---------|:------|:-----|
|1 |1-12 |1-5 |
|2 |1-12 |6-7 |
[ FAIL 1 | WARN 0 | SKIP 4 | PASS 48 ]
══ Skipped tests (4) ═══════════════════════════════════════════════════════════
• On CRAN (4): 'test-clustering.R:16:3', 'test-clustering.R:26:3',
'test-modelling.R:104:3', 'test-modelling.R:135:3'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-preprocessing.R:34:3'): kNN plots ──────────────────────────────
Error in `kNN(x, k, sort = TRUE, ...)`: data/distances cannot contain NAs for kNN (with kd-tree)!
Backtrace:
▆
1. ├─testthat::expect_true(...) at test-preprocessing.R:34:3
2. │ └─testthat::quasi_label(enquo(object), label)
3. │ └─rlang::eval_bare(expr, quo_get_env(quo))
4. ├─ggplot2::is_ggplot(plot_kNNdist(sessions, log = FALSE))
5. │ └─S7::S7_inherits(x, class_ggplot)
6. ├─evprof::plot_kNNdist(sessions, log = FALSE)
7. │ ├─ggplot2::ggplot(...)
8. │ └─tibble::tibble(...)
9. │ └─tibble:::tibble_quos(xs, .rows, .name_repair)
10. │ └─rlang::eval_tidy(xs[[j]], mask)
11. ├─base::sort(...)
12. └─dbscan::kNNdist(...)
13. └─dbscan::kNN(x, k, sort = TRUE, ...)
[ FAIL 1 | WARN 0 | SKIP 4 | PASS 48 ]
Error:
! Test failures.
Execution halted
Flavor: r-release-linux-x86_64