Last updated on 2026-07-08 01:53:04 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.2.8 | 6.21 | 100.35 | 106.56 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.2.8 | 4.53 | 73.82 | 78.35 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.2.8 | 12.00 | 225.87 | 237.87 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.2.8 | 10.00 | 160.05 | 170.05 | OK | |
| r-devel-windows-x86_64 | 1.2.7 | 10.00 | 140.00 | 150.00 | ERROR | |
| r-patched-linux-x86_64 | 1.2.7 | 8.47 | 92.68 | 101.15 | OK | |
| r-release-linux-x86_64 | 1.2.7 | 6.47 | 92.83 | 99.30 | OK | |
| r-release-macos-arm64 | 1.2.8 | 2.00 | 49.00 | 51.00 | OK | |
| r-release-macos-x86_64 | 1.2.8 | 5.00 | 116.00 | 121.00 | OK | |
| r-release-windows-x86_64 | 1.2.8 | 11.00 | 146.00 | 157.00 | OK | |
| r-oldrel-macos-arm64 | 1.2.8 | 1.00 | 52.00 | 53.00 | OK | |
| r-oldrel-macos-x86_64 | 1.2.8 | 5.00 | 135.00 | 140.00 | OK | |
| r-oldrel-windows-x86_64 | 1.2.8 | 15.00 | 151.00 | 166.00 | OK |
Version: 1.2.7
Check: examples
Result: ERROR
Running examples in 'tourr-Ex.R' failed
The error most likely occurred in:
> ### Name: path_dist
> ### Title: Compute distance matrix from bases.
> ### Aliases: path_dist
>
> ### ** Examples
>
> # This code is to be used as an example but you should increase
> # the max from 2 to 50, say, to check tour coverage.
> flea_std <- apply(flea[,1:6], 2, function(x) (x-mean(x))/sd(x))
> grand <- interpolate(save_history(flea_std, max = 2), 0.2)
> # The grand tour -----------------------------
> # Look at the tour path in a tour, how well does it cover a sphere
> # Using MDS to summarise the high-d space of projections
> # Last basis is a duplicate, needs removing
> d <- path_dist(grand[,,-dim(grand)[[3]]])
> ord <- as.data.frame(MASS::isoMDS(d)$points)
initial value 0.005709
final value 0.003478
converged
> require(ggplot2)
Loading required package: ggplot2
> ggplot(data = ord, aes(x=V1, y=V2)) +
+ geom_path() +
+ coord_equal() +
+ labs(x = NULL, y = NULL)
>
> # Compare five guided tours -----------------------------
> holes1d <- guided_tour(holes(), 1)
> tour_reps <- replicate(5, save_history(flea_std, holes1d, max = 2),
+ simplify = FALSE
+ )
Target: 0.684, 32.6% better
Target: 1.202, 80.6% better
Target: 0.922, 23.3% better
Target: 1.383, 65.4% better
Target: 0.646, 36.3% better
> tour_reps2 <- lapply(tour_reps, interpolate, 0.2)
>
> bases <- unlist(lapply(tour_reps2, as.list), recursive = FALSE)
> class(bases) <- "history_list"
> index_values <- paths_index(tour_reps2, holes())
Error in unclass(x)[i, j, k, drop = FALSE] :
incorrect number of dimensions
Calls: paths_index ... structure -> apply -> array -> [ -> [.history_array
Execution halted
Flavor: r-devel-windows-x86_64