Last updated on 2026-06-19 06:49:53 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.6.6 | 93.78 | 107.25 | 201.03 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.6.6 | 66.66 | 74.23 | 140.89 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.6.6 | 133.00 | 136.13 | 269.13 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 1.6.6 | 186.00 | 143.35 | 329.35 | ERROR | |
| r-devel-windows-x86_64 | 1.6.6 | 121.00 | 195.00 | 316.00 | OK | |
| r-patched-linux-x86_64 | 1.6.6 | 91.94 | 100.38 | 192.32 | OK | |
| r-release-linux-x86_64 | 1.6.6 | 92.68 | 100.43 | 193.11 | 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 | 112.00 | 193.00 | 305.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 | 130.00 | 215.00 | 345.00 | OK |
Version: 1.6.6
Check: examples
Result: ERROR
Running examples in ‘rotations-Ex.R’ failed
The error most likely occurred in:
> ### 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
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 1.6.6
Check: tests
Result: ERROR
Running ‘test-all.R’
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 0 | 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 0 | SKIP 0 | PASS 51 ]
Error:
! Test failures.
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc