Last updated on 2023-09-23 00:54:06 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.6 | 3.31 | 68.42 | 71.73 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.6 | 3.75 | 51.28 | 55.03 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.6 | 85.72 | ERROR | |||
r-devel-linux-x86_64-fedora-gcc | 0.6 | 90.32 | ERROR | |||
r-devel-windows-x86_64 | 0.6 | 6.00 | 72.00 | 78.00 | OK | |
r-patched-linux-x86_64 | 0.6 | 4.06 | 64.00 | 68.06 | OK | |
r-release-linux-x86_64 | 0.6 | 4.05 | 66.47 | 70.52 | OK | |
r-release-macos-arm64 | 0.6 | 44.00 | NOTE | |||
r-release-macos-x86_64 | 0.6 | 72.00 | NOTE | |||
r-release-windows-x86_64 | 0.6 | 7.00 | 85.00 | 92.00 | OK | |
r-oldrel-macos-arm64 | 0.6 | 36.00 | NOTE | |||
r-oldrel-macos-x86_64 | 0.6 | 12.00 | ERROR | |||
r-oldrel-windows-x86_64 | 0.6 | 8.00 | 85.00 | 93.00 | OK |
Version: 0.6
Check: examples
Result: ERROR
Running examples in ‘simPATHy-Ex.R’ failed
The error most likely occurred in:
> ### Name: plotCorGraph
> ### Title: Plot correlation or partial correlation matrix
> ### Aliases: plotCorGraph
>
> ### ** Examples
>
> if( require(gRbase) & require(graph)){
+ graph <- gRbase::ug(~a:b, ~a:c, ~c:d, ~b:d, ~b:c)
+
+ S <- matrix(c(2, 0.8,0.5,-0.3,
+ 0.8,1.5,0.6,-0.7,
+ 0.5,0.6,1, 0.7,
+ -0.3,-0.7,0.7,3), ncol=4,nrow=4)
+ colnames(S) <- rownames(S) <- graph::nodes(graph)
+
+ # Plot the correlation matrix of S
+ plotCorGraph(S)
+
+
+ S<-fitSgraph(graph = graph,S = S)
+ # Change the color range
+ plotCorGraph(S, colLim=c(-0.5,0.5))
+
+ # Visualize the adjacency matrix
+ plotCorGraph(S, type="cor", graph = graph)
+
+ # Show the partial correlation matrix
+ plotCorGraph(S, type="pcor", graph = graph)
+
+ # Plot the difference between two matrices
+ S2 <- S
+ # Change the element c~a
+ S2["a","c"] <- S2["c","a"]<- -0.1
+ plotCorGraph(S1=S, S2=S2)
+ plotCorGraph(S1=S, S2=S2, type="pcor")
+
+ S2<-fitSgraph(graph = graph,S = S2)
+ # Highlight the graphical structure
+ plotCorGraph(S1=S, S2=S2, type="pcor",graph = graph)
+ # Highlight the element c~a
+ plotCorGraph(S1=S, S2=S2, type="pcor",graph = graph,path = list(c("a","c")))
+
+ }
Loading required package: gRbase
Loading required package: graph
Loading required package: BiocGenerics
Attaching package: ‘BiocGenerics’
The following objects are masked from ‘package:stats’:
IQR, mad, sd, var, xtabs
The following objects are masked from ‘package:base’:
Filter, Find, Map, Position, Reduce, anyDuplicated, aperm, append,
as.data.frame, basename, cbind, colnames, dirname, do.call,
duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,
lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,
pmin.int, rank, rbind, rownames, sapply, setdiff, sort, table,
tapply, union, unique, unsplit, which.max, which.min
Attaching package: ‘graph’
The following objects are masked from ‘package:gRbase’:
addEdge, adj, connComp, edges, nodes, removeEdge, subGraph
Error: unable to find an inherited method for function ‘nodes’ for signature ‘object = "igraph"’
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.6
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
--- re-building ‘simPATHy.Rmd’ using rmarkdown
Quitting from lines 46-49 [unnamed-chunk-5] (simPATHy.Rmd)
Error: processing vignette 'simPATHy.Rmd' failed with diagnostics:
unable to find an inherited method for function 'nodes' for signature 'object = "igraph"'
--- failed re-building ‘simPATHy.Rmd’
SUMMARY: processing the following file failed:
‘simPATHy.Rmd’
Error: Vignette re-building failed.
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
Version: 0.6
Check: package dependencies
Result: NOTE
Packages suggested but not available for checking: 'clipper', 'topologyGSA'
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64
Version: 0.6
Check: package dependencies
Result: ERROR
Package required but not available: ‘qpgraph’
Packages suggested but not available for checking: 'clipper', 'topologyGSA'
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-oldrel-macos-x86_64