CRAN Package Check Results for Package iRF

Last updated on 2020-08-07 01:49:49 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 2.0.0 42.26 92.38 134.64 OK
r-devel-linux-x86_64-debian-gcc 2.0.0 30.37 69.94 100.31 OK
r-devel-linux-x86_64-fedora-clang 2.0.0 176.84 OK
r-devel-linux-x86_64-fedora-gcc 2.0.0 162.03 OK
r-devel-windows-ix86+x86_64 2.0.0 111.00 196.00 307.00 ERROR
r-patched-linux-x86_64 2.0.0 33.04 90.20 123.24 OK
r-patched-solaris-x86 2.0.0 204.00 OK
r-release-linux-x86_64 2.0.0 34.29 89.72 124.01 OK
r-release-macos-x86_64 2.0.0 OK
r-release-windows-ix86+x86_64 2.0.0 113.00 143.00 256.00 ERROR
r-oldrel-macos-x86_64 2.0.0 FAIL
r-oldrel-windows-ix86+x86_64 2.0.0 82.00 147.00 229.00 ERROR

Check Details

Version: 2.0.0
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 284
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11071 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11071 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64

Version: 2.0.0
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 284
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11111 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11111 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64

Version: 2.0.0
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 284
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11320 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11320 (sockconn)
    Execution halted
Flavor: r-release-windows-ix86+x86_64

Version: 2.0.0
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 284
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11466 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11466 (sockconn)
    Execution halted
Flavor: r-release-windows-ix86+x86_64

Version: 2.0.0
Check: whether package can be installed
Result: FAIL
Flavor: r-oldrel-macos-x86_64

Version: 2.0.0
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 293
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11395 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11395 (sockconn)
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64

Version: 2.0.0
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'iRF-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: readForest
    > ### Title: Pass data through a fitted forest, record node characteristics
    > ### [works for binary classification with continuous variables]
    > ### Aliases: readForest
    >
    > ### ** Examples
    >
    > n = 50; p = 10
    > X = array(rnorm(n*p), c(n, p))
    > Y = (X[,1]>0.35 & X[,2]>0.35)|(X[,5]>0.35 & X[,7]>0.35)
    > Y = as.factor(as.numeric(Y>0))
    >
    > train.id = 1:(n/2)
    > test.id = setdiff(1:n, train.id)
    >
    > rf <- randomForest(x=X, y=Y, keep.forest=TRUE, track.nodes=TRUE,
    + ntree=100)
    > rforest <- readForest(rfobj=rf, x=X, n.core=2)
    > head(rforest$tree_info)
    NULL
    >
    > # count number of leaf nodes with at least 5 observations
    > sum(rforest$tree.info$size.node > 5)
    [1] 284
    >
    >
    >
    >
    > cleanEx()
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11359 (sockconn)
     <-CRANwin.fb05.statistik.uni-dortmund.de:11359 (sockconn)
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64