Last updated on 2026-06-08 02:51:26 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.6.6 | 97.28 | 102.39 | 199.67 | ERROR | |
| r-devel-linux-x86_64-debian-gcc | 1.6.6 | 66.59 | 66.72 | 133.31 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.6.6 | 135.00 | 163.66 | 298.66 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 1.6.6 | 200.00 | 170.49 | 370.49 | ERROR | |
| r-devel-windows-x86_64 | 1.6.6 | 115.00 | 194.00 | 309.00 | ERROR | |
| r-patched-linux-x86_64 | 1.6.6 | 90.54 | 100.54 | 191.08 | OK | |
| r-release-linux-x86_64 | 1.6.6 | 90.33 | 99.54 | 189.87 | 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 | 181.00 | 299.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 | 128.00 | 211.00 | 339.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
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 1.6.6
Check: tests
Result: ERROR
Running ‘test-all.R’ [3s/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 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
Flavor: r-devel-linux-x86_64-debian-clang
Version: 1.6.6
Check: Rd files
Result: WARN
cannot open the connection
problem found in ‘Maxwell.Rd’
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.6.6
Check: tests
Result: ERROR
Running ‘test-all.R’ [2s/2s]
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
Version: 1.6.6
Check: PDF version of manual
Result: ERROR
Rd conversion errors:
Converting parsed Rd's to LaTeX .Warning in file(out, "wt") :
cannot open file '/tmp/Rtmpo8PBS6/ltx1c609c4f9af36c/cayley.kappa.tex': No space left on device
Error in file(out, "wt") : cannot open the connection
Flavor: r-devel-linux-x86_64-debian-gcc
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, r-devel-windows-x86_64
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
Version: 1.6.6
Check: tests
Result: ERROR
Running 'test-all.R' [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-windows-x86_64