Last updated on 2026-05-09 01:49:16 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.6-17 | 10.46 | 81.00 | 91.46 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.6-17 | 7.18 | 58.24 | 65.42 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.6-17 | 17.00 | 125.02 | 142.02 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.6-17 | 18.00 | 146.16 | 164.16 | OK | |
| r-devel-windows-x86_64 | 0.6-17 | 9.00 | 117.00 | 126.00 | OK | |
| r-patched-linux-x86_64 | 0.6-17 | 10.32 | 74.86 | 85.18 | OK | |
| r-release-linux-x86_64 | 0.6-17 | 9.40 | 74.20 | 83.60 | OK | |
| r-release-macos-arm64 | 0.6-17 | 2.00 | 25.00 | 27.00 | OK | |
| r-release-macos-x86_64 | 0.6-17 | 7.00 | 111.00 | 118.00 | OK | |
| r-release-windows-x86_64 | 0.6-17 | 10.00 | 112.00 | 122.00 | ERROR | |
| r-oldrel-macos-arm64 | 0.6-17 | 2.00 | 64.00 | 66.00 | OK | |
| r-oldrel-macos-x86_64 | 0.6-17 | 6.00 | 169.00 | 175.00 | OK | |
| r-oldrel-windows-x86_64 | 0.6-17 | 15.00 | 120.00 | 135.00 | OK |
Version: 0.6-17
Check: examples
Result: ERROR
Running examples in 'relations-Ex.R' failed
The error most likely occurred in:
> ### Name: impute
> ### Title: Impute relations
> ### Aliases: relation_impute
> ### Keywords: math
>
> ### ** Examples
>
> ## create a relation with a missing object
> R <- ranking(1:2, 1:3)
> print(R)
1L > 2L
Missing elements: 3L
> R <- as.relation(R)
>
> ## find all suitable completions within L
> ens <- relation_impute(R, method = "any/L", n = "all")
> lapply(ens, as.ranking)
[[1]]
3L > 1L > 2L
[[2]]
1L > 3L > 2L
[[3]]
1L > 2L > 3L
> if(require("Rgraphviz")) plot(ens)
Loading required package: Rgraphviz
Loading required package: graph
Loading required package: BiocGenerics
Loading required package: generics
Attaching package: 'generics'
The following objects are masked from 'package:base':
as.difftime, as.factor, as.ordered, intersect, is.element, setdiff,
setequal, union
Attaching package: 'BiocGenerics'
The following objects are masked from 'package:stats':
IQR, mad, sd, var, xtabs
The following objects are masked from 'package:base':
anyDuplicated, aperm, append, as.data.frame, basename, cbind,
colnames, dirname, do.call, duplicated, eval, evalq, Filter, Find,
get, grep, grepl, is.unsorted, lapply, Map, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
rbind, Reduce, rownames, sapply, saveRDS, table, tapply, unique,
unsplit, which.max, which.min
Loading required package: grid
>
> ## find 3 suitable partial orders
> ens <- relation_impute(R, method = "any/O", n = 3)
> lapply(ens, relation_incidence)
[[1]]
Incidences:
1L 2L 3L
1L 1 0 1
2L 1 1 1
3L 0 0 1
[[2]]
Incidences:
1L 2L 3L
1L 1 0 0
2L 1 1 1
3L 0 0 1
[[3]]
Incidences:
1L 2L 3L
1L 1 0 0
2L 1 1 1
3L 1 0 1
> if(require("Rgraphviz")) plot(ens)
Flavor: r-release-windows-x86_64