CRAN Package Check Results for Package DynComm

Last updated on 2022-12-09 07:53:18 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 2020.1.6 41.32 64.45 105.77 ERROR
r-devel-linux-x86_64-debian-gcc 2020.1.6 40.18 52.91 93.09 ERROR
r-devel-linux-x86_64-fedora-clang 2020.1.6 155.99 ERROR
r-devel-linux-x86_64-fedora-gcc 2020.1.6 152.75 ERROR
r-devel-windows-x86_64 2020.1.6 48.00 133.00 181.00 OK
r-patched-linux-x86_64 2020.1.6 35.38 59.55 94.93 OK
r-release-linux-x86_64 2020.1.6 40.16 59.76 99.92 OK
r-release-macos-arm64 2020.1.6 41.00 NOTE
r-release-macos-x86_64 2020.1.6 51.00 NOTE
r-release-windows-x86_64 2020.1.6 52.00 130.00 182.00 OK
r-oldrel-macos-arm64 2020.1.6 48.00 NOTE
r-oldrel-macos-x86_64 2020.1.6 72.00 NOTE
r-oldrel-windows-ix86+x86_64 2020.1.6 98.00 123.00 221.00 OK

Check Details

Version: 2020.1.6
Check: examples
Result: ERROR
    Running examples in 'DynComm-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: DynComm
    > ### Title: DynComm
    > ### Aliases: DynComm
    >
    > ### ** Examples
    >
    > Parameters<-matrix(c("e","0.1","w", "FALSE"),ncol=2, byrow=TRUE)
    > dc<-DynComm(ALGORITHM$LOUVAIN,CRITERION$MODULARITY,Parameters)
    > dc$addRemoveEdges(
    + matrix(
    + c(10,20,10,30,20,30,30,60,40,60,40,50,50,70,60,70)
    + ,ncol=2,byrow=TRUE)
    + )
    [1] TRUE
    > ## or
    > ## dc$addRemoveEdges("initial_graph.txt")
    > dc$communityCount()
    [1] 2
    > ## You can use the non inline version of the functions
    > DynComm.communities(dc)
    [1] 10 40
    > ## Several alias have been defined.
    > ## In this case, communityNodeCount is alias of communityVertexCount
    > dc$communityNodeCount(10)
    [1] 3
    > dc$communityNeighbours(10)
     neighbour weight
    [1,] 40 1
    > dc$communityInnerEdgesWeight(10)
    [1] 6
    > dc$communityTotalWeight(10)
    [1] 7
    > dc$communityEdgeWeight(10,40)
    [1] 1
    > dc$community(10) ##this parameter is a vertex not a community. Do not confuse them
    [1] 10
    > dc$vertices(10)
    [1] 10 20 30
    > dc$communityMapping(TRUE)
     [,1] [,2]
    [1,] 10 10
    [2,] 20 10
    [3,] 30 10
    [4,] 40 40
    [5,] 50 40
    [6,] 60 40
    [7,] 70 40
    > dc$quality()
    [1] 0.3671875
    > dc$time()
    [1] 64067899
    > ## lets add post processing :)
    > dc$postProcess(
    + list(
    + list(POSTPROCESSING$DENSOPT)
    + )
    + )
    Error: non-interactive browser() -- left over from debugging?
    Execution halted
Flavor: r-devel-linux-x86_64-debian-clang

Version: 2020.1.6
Check: examples
Result: ERROR
    Running examples in ‘DynComm-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: DynComm
    > ### Title: DynComm
    > ### Aliases: DynComm
    >
    > ### ** Examples
    >
    > Parameters<-matrix(c("e","0.1","w", "FALSE"),ncol=2, byrow=TRUE)
    > dc<-DynComm(ALGORITHM$LOUVAIN,CRITERION$MODULARITY,Parameters)
    > dc$addRemoveEdges(
    + matrix(
    + c(10,20,10,30,20,30,30,60,40,60,40,50,50,70,60,70)
    + ,ncol=2,byrow=TRUE)
    + )
    [1] TRUE
    > ## or
    > ## dc$addRemoveEdges("initial_graph.txt")
    > dc$communityCount()
    [1] 2
    > ## You can use the non inline version of the functions
    > DynComm.communities(dc)
    [1] 10 40
    > ## Several alias have been defined.
    > ## In this case, communityNodeCount is alias of communityVertexCount
    > dc$communityNodeCount(10)
    [1] 3
    > dc$communityNeighbours(10)
     neighbour weight
    [1,] 40 1
    > dc$communityInnerEdgesWeight(10)
    [1] 6
    > dc$communityTotalWeight(10)
    [1] 7
    > dc$communityEdgeWeight(10,40)
    [1] 1
    > dc$community(10) ##this parameter is a vertex not a community. Do not confuse them
    [1] 10
    > dc$vertices(10)
    [1] 10 20 30
    > dc$communityMapping(TRUE)
     [,1] [,2]
    [1,] 10 10
    [2,] 20 10
    [3,] 30 10
    [4,] 40 40
    [5,] 50 40
    [6,] 60 40
    [7,] 70 40
    > dc$quality()
    [1] 0.3671875
    > dc$time()
    [1] 3084980
    > ## lets add post processing :)
    > dc$postProcess(
    + list(
    + list(POSTPROCESSING$DENSOPT)
    + )
    + )
    Error: non-interactive browser() -- left over from debugging?
    Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc

Version: 2020.1.6
Check: examples
Result: ERROR
    Running examples in ‘DynComm-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: DynComm
    > ### Title: DynComm
    > ### Aliases: DynComm
    >
    > ### ** Examples
    >
    > Parameters<-matrix(c("e","0.1","w", "FALSE"),ncol=2, byrow=TRUE)
    > dc<-DynComm(ALGORITHM$LOUVAIN,CRITERION$MODULARITY,Parameters)
    > dc$addRemoveEdges(
    + matrix(
    + c(10,20,10,30,20,30,30,60,40,60,40,50,50,70,60,70)
    + ,ncol=2,byrow=TRUE)
    + )
    [1] TRUE
    > ## or
    > ## dc$addRemoveEdges("initial_graph.txt")
    > dc$communityCount()
    [1] 2
    > ## You can use the non inline version of the functions
    > DynComm.communities(dc)
    [1] 10 40
    > ## Several alias have been defined.
    > ## In this case, communityNodeCount is alias of communityVertexCount
    > dc$communityNodeCount(10)
    [1] 3
    > dc$communityNeighbours(10)
     neighbour weight
    [1,] 40 1
    > dc$communityInnerEdgesWeight(10)
    [1] 6
    > dc$communityTotalWeight(10)
    [1] 7
    > dc$communityEdgeWeight(10,40)
    [1] 1
    > dc$community(10) ##this parameter is a vertex not a community. Do not confuse them
    [1] 10
    > dc$vertices(10)
    [1] 10 20 30
    > dc$communityMapping(TRUE)
     [,1] [,2]
    [1,] 10 10
    [2,] 20 10
    [3,] 30 10
    [4,] 40 40
    [5,] 50 40
    [6,] 60 40
    [7,] 70 40
    > dc$quality()
    [1] 0.3671875
    > dc$time()
    [1] 35635179
    > ## lets add post processing :)
    > dc$postProcess(
    + list(
    + list(POSTPROCESSING$DENSOPT)
    + )
    + )
    Error: non-interactive browser() -- left over from debugging?
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang

Version: 2020.1.6
Check: examples
Result: ERROR
    Running examples in ‘DynComm-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: DynComm
    > ### Title: DynComm
    > ### Aliases: DynComm
    >
    > ### ** Examples
    >
    > Parameters<-matrix(c("e","0.1","w", "FALSE"),ncol=2, byrow=TRUE)
    > dc<-DynComm(ALGORITHM$LOUVAIN,CRITERION$MODULARITY,Parameters)
    > dc$addRemoveEdges(
    + matrix(
    + c(10,20,10,30,20,30,30,60,40,60,40,50,50,70,60,70)
    + ,ncol=2,byrow=TRUE)
    + )
    [1] TRUE
    > ## or
    > ## dc$addRemoveEdges("initial_graph.txt")
    > dc$communityCount()
    [1] 2
    > ## You can use the non inline version of the functions
    > DynComm.communities(dc)
    [1] 10 40
    > ## Several alias have been defined.
    > ## In this case, communityNodeCount is alias of communityVertexCount
    > dc$communityNodeCount(10)
    [1] 3
    > dc$communityNeighbours(10)
     neighbour weight
    [1,] 40 1
    > dc$communityInnerEdgesWeight(10)
    [1] 6
    > dc$communityTotalWeight(10)
    [1] 7
    > dc$communityEdgeWeight(10,40)
    [1] 1
    > dc$community(10) ##this parameter is a vertex not a community. Do not confuse them
    [1] 10
    > dc$vertices(10)
    [1] 10 20 30
    > dc$communityMapping(TRUE)
     [,1] [,2]
    [1,] 10 10
    [2,] 20 10
    [3,] 30 10
    [4,] 40 40
    [5,] 50 40
    [6,] 60 40
    [7,] 70 40
    > dc$quality()
    [1] 0.3671875
    > dc$time()
    [1] 6463477
    > ## lets add post processing :)
    > dc$postProcess(
    + list(
    + list(POSTPROCESSING$DENSOPT)
    + )
    + )
    Error: non-interactive browser() -- left over from debugging?
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc

Version: 2020.1.6
Check: installed package size
Result: NOTE
     installed size is 5.3Mb
     sub-directories of 1Mb or more:
     libs 5.1Mb
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64