Last updated on 2025-10-17 09:49:58 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.1.0 | 2.78 | 30.87 | 33.65 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.1.1 | 2.18 | 23.93 | 26.11 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.1.1 | 53.09 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.1.1 | 50.78 | OK | |||
r-devel-windows-x86_64 | 0.1.0 | 4.00 | 48.00 | 52.00 | ERROR | |
r-patched-linux-x86_64 | 0.1.1 | 2.86 | 29.31 | 32.17 | OK | |
r-release-linux-x86_64 | 0.1.0 | 2.82 | 29.05 | 31.87 | OK | |
r-release-macos-arm64 | 0.1.1 | 19.00 | OK | |||
r-release-macos-x86_64 | 0.1.1 | 32.00 | OK | |||
r-release-windows-x86_64 | 0.1.1 | 4.00 | 64.00 | 68.00 | OK | |
r-oldrel-macos-arm64 | 0.1.1 | 25.00 | OK | |||
r-oldrel-macos-x86_64 | 0.1.1 | 42.00 | OK | |||
r-oldrel-windows-x86_64 | 0.1.0 | 7.00 | 57.00 | 64.00 | OK |
Version: 0.1.0
Check: examples
Result: ERROR
Running examples in 'GephiForR-Ex.R' failed
The error most likely occurred in:
> ### Name: rotate_layout
> ### Title: Rotate layout positions by a custom angle
> ### Aliases: rotate_layout
>
> ### ** Examples
>
>
> # Create a random graph
> library(igraph)
Attaching package: 'igraph'
The following objects are masked from 'package:stats':
decompose, spectrum
The following object is masked from 'package:base':
union
> g <- erdos.renyi.game(100, 0.05)
>
> # Initializing position vector and plotting
> position <- as.matrix(data.frame(X = c(1, 2, 3), Y = c(4, 5, 6)))
> plot(g, layout = position)
Error in `plot()`:
! The layout has 3 rows, but the graph has 100 vertices.
ℹ It is recommended to store the layout as x and y vertex attributes and not as
a matrix graph attribute.
Backtrace:
▆
1. ├─base::plot(g, layout = position)
2. └─igraph::plot.igraph(g, layout = position)
3. └─cli::cli_abort(...)
4. └─rlang::abort(...)
Execution halted
Flavor: r-devel-windows-x86_64