Last updated on 2026-06-04 19:50:37 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.6.6 | 97.52 | 106.61 | 204.13 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.6.6 | 67.11 | 72.76 | 139.87 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.6.6 | 130.00 | 174.36 | 304.36 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.6.6 | 188.00 | 194.55 | 382.55 | OK | |
| r-devel-windows-x86_64 | 1.6.6 | 116.00 | 194.00 | 310.00 | OK | |
| r-patched-linux-x86_64 | 1.6.6 | 90.54 | 100.54 | 191.08 | OK | |
| r-release-linux-x86_64 | 1.6.6 | 93.95 | 100.60 | 194.55 | OK | |
| r-release-macos-arm64 | 1.6.6 | 18.00 | 22.00 | 40.00 | OK | |
| r-release-macos-x86_64 | 1.6.6 | 54.00 | 107.00 | 161.00 | OK | |
| r-release-windows-x86_64 | 1.6.6 | 118.00 | 180.00 | 298.00 | OK | |
| r-oldrel-macos-arm64 | 1.6.6 | OK | ||||
| r-oldrel-macos-x86_64 | 1.6.6 | 63.00 | 310.00 | 373.00 | OK | |
| r-oldrel-windows-x86_64 | 1.6.6 | 133.00 | 202.00 | 335.00 | OK |
Version: 1.6.6
Check: examples
Result: ERROR
Running examples in ‘rotations-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Q4
> ### Title: 'Q4' class for storing rotation data as quaternions
> ### Aliases: Q4 as.Q4 as.Q4.default as.Q4.SO3 as.Q4.Q4 as.Q4.data.frame
> ### is.Q4 id.Q4
> ### Keywords: datasets
>
> ### ** Examples
>
> # Pull off subject 1's wrist measurements
> Subj1Wrist <- subset(drill, Subject == '1' & Joint == 'Wrist')
>
> ## The measurements are in columns 5:8
> all(is.Q4(Subj1Wrist[,5:8])) #TRUE, even though Qs is a data.frame, the rows satisfy the
[1] TRUE
> #conditions necessary to be quaternions BUT,
> #S3 methods (e.g. 'mean' or 'plot') for objects of class
> #'Q4' will not work until 'as.Q4' is used
>
> Qs <- as.Q4(Subj1Wrist[,5:8]) #Coerce measurements into 'Q4' type using as.Q4.data.frame
> all(is.Q4(Qs)) #TRUE
Error in x[i, ...] : subscript out of bounds
Calls: is.Q4 -> apply -> [ -> [.Q4
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.6.6
Check: tests
Result: ERROR
Running ‘test-all.R’ [2s/3s]
Running the tests in ‘tests/test-all.R’ failed.
Complete output:
> library(testthat)
> test_check("rotations")
Loading required package: rotations
Saving _problems/test_conversions-10.R
[ FAIL 1 | WARN 2 | SKIP 0 | PASS 51 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure ('test_conversions.R:10:1'): (code run outside of `test_that()`) ────
Expected `is.Q4(as.Q4(u, r))` to be TRUE.
Differences:
`actual`: FALSE
`expected`: TRUE
[ FAIL 1 | WARN 2 | SKIP 0 | PASS 51 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc