CRAN Package Check Results for Package GRPtests

Last updated on 2022-05-08 06:53:36 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.1.2 8.82 84.23 93.05 ERROR
r-devel-linux-x86_64-debian-gcc 0.1.2 6.23 63.36 69.59 ERROR
r-devel-linux-x86_64-fedora-clang 0.1.2 112.92 ERROR
r-devel-linux-x86_64-fedora-gcc 0.1.2 106.82 ERROR
r-devel-windows-x86_64 0.1.2 13.00 101.00 114.00 NOTE
r-patched-linux-x86_64 0.1.2 8.22 79.17 87.39 ERROR
r-release-linux-x86_64 0.1.2 8.10 81.13 89.23 ERROR
r-release-macos-arm64 0.1.2 34.00 NOTE
r-release-macos-x86_64 0.1.2 58.00 NOTE
r-release-windows-x86_64 0.1.2 13.00 105.00 118.00 NOTE
r-oldrel-macos-arm64 0.1.2 43.00 NOTE
r-oldrel-macos-x86_64 0.1.2 48.00 NOTE
r-oldrel-windows-ix86+x86_64 0.1.2 19.00 93.00 112.00 NOTE

Check Details

Version: 0.1.2
Check: package dependencies
Result: NOTE
    Package suggested but not available for checking: 'xyz'
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.1.2
Check: LazyData
Result: NOTE
     'LazyData' is specified without a 'data' directory
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-ix86+x86_64

Version: 0.1.2
Check: examples
Result: ERROR
    Running examples in 'GRPtests-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: GRPtest
    > ### Title: Goodness-of-fit test for high-dimensional generalized linear
    > ### models
    > ### Aliases: GRPtest
    >
    > ### ** Examples
    >
    > # Testing for nonlinearity: Logistic link function
    >
    > set.seed(1)
    > X <- matrix(rnorm(300*30), 300, 30)
    > z <- X[, 1] + X[, 2]^4
    > pr <- 1/(1 + exp(-z))
    > y <- rbinom(nrow(X), 1, pr)
    > (out <- GRPtest(X, y, fam = "binomial", nsplits = 5))
    [1] 0.001908748
    >
    > # Testing for nonlinearity: Define your own RP function
    > # use package xyz
    >
    > my_RP_function <- function(XA, resA, XB){
    + xyz_fit <- xyz_regression(XA, resA)
    + predict(xyz_fit, newdata = as.matrix(XB))[,5]
    + }
    >
    > library(xyz)
    Error in library(xyz) : there is no package called 'xyz'
    Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.1.2
Check: dependencies in R code
Result: NOTE
    Namespace in Imports field not imported from: ‘MASS’
     All declared Imports should be used.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Version: 0.1.2
Check: examples
Result: ERROR
    Running examples in ‘GRPtests-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: GRPtest
    > ### Title: Goodness-of-fit test for high-dimensional generalized linear
    > ### models
    > ### Aliases: GRPtest
    >
    > ### ** Examples
    >
    > # Testing for nonlinearity: Logistic link function
    >
    > set.seed(1)
    > X <- matrix(rnorm(300*30), 300, 30)
    > z <- X[, 1] + X[, 2]^4
    > pr <- 1/(1 + exp(-z))
    > y <- rbinom(nrow(X), 1, pr)
    > (out <- GRPtest(X, y, fam = "binomial", nsplits = 5))
    [1] 0.0003799276
    >
    > # Testing for nonlinearity: Define your own RP function
    > # use package xyz
    >
    > my_RP_function <- function(XA, resA, XB){
    + xyz_fit <- xyz_regression(XA, resA)
    + predict(xyz_fit, newdata = as.matrix(XB))[,5]
    + }
    >
    > library(xyz)
    Error in library(xyz) : there is no package called ‘xyz’
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang

Version: 0.1.2
Check: examples
Result: ERROR
    Running examples in ‘GRPtests-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: GRPtest
    > ### Title: Goodness-of-fit test for high-dimensional generalized linear
    > ### models
    > ### Aliases: GRPtest
    >
    > ### ** Examples
    >
    > # Testing for nonlinearity: Logistic link function
    >
    > set.seed(1)
    > X <- matrix(rnorm(300*30), 300, 30)
    > z <- X[, 1] + X[, 2]^4
    > pr <- 1/(1 + exp(-z))
    > y <- rbinom(nrow(X), 1, pr)
    > (out <- GRPtest(X, y, fam = "binomial", nsplits = 5))
    [1] 0.001908748
    >
    > # Testing for nonlinearity: Define your own RP function
    > # use package xyz
    >
    > my_RP_function <- function(XA, resA, XB){
    + xyz_fit <- xyz_regression(XA, resA)
    + predict(xyz_fit, newdata = as.matrix(XB))[,5]
    + }
    >
    > library(xyz)
    Error in library(xyz) : there is no package called ‘xyz’
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc