CRAN Package Check Results for Package MFSIS

Last updated on 2023-03-28 04:53:02 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.2.0 10.78 109.24 120.02 OK
r-devel-linux-x86_64-debian-gcc 0.2.0 8.17 82.96 91.13 OK
r-devel-linux-x86_64-fedora-clang 0.2.0 156.19 NOTE
r-devel-linux-x86_64-fedora-gcc 0.2.0 156.03 NOTE
r-patched-linux-x86_64 0.2.0 8.94 103.57 112.51 OK
r-release-linux-x86_64 0.2.0 11.06 106.03 117.09 OK
r-release-macos-arm64 0.2.0 47.00 OK
r-release-macos-x86_64 0.2.0 59.00 NOTE
r-release-windows-x86_64 0.2.0 23.00 154.00 177.00 OK
r-oldrel-macos-arm64 0.2.0 42.00 OK
r-oldrel-macos-x86_64 0.2.0 56.00 NOTE
r-oldrel-windows-ix86+x86_64 0.2.0 22.00 127.00 149.00 ERROR

Check Details

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

Version: 0.2.0
Check: examples
Result: ERROR
    Running examples in 'MFSIS-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: PCSIS
    > ### Title: Model-Free Feature Screening Based on the Projection Correlation
    > ### Aliases: PCSIS
    >
    > ### ** Examples
    >
    >
    > have_numpy=reticulate::py_module_available("numpy")
    > if (have_numpy){
    + req_py()
    + library(MFSIS)
    + n=20;
    + p=50;
    + rho=0.5;
    + data=GendataLM(n,p,rho,error="gaussian")
    + data=cbind(data[[1]],data[[2]])
    + colnames(data)[1:ncol(data)]=c(paste0("X",1:(ncol(data)-1)),"Y")
    + data=as.matrix(data)
    + X=data[,1:(ncol(data)-1)];
    + Y=data[,ncol(data)];
    + A=PCSIS(X,Y,n/log(n));A
    + }else{
    + print('You should have the Python testing environment!')
    + }
    vIt is detected that you have configured the necessary Python environmemt!
    
    vIt is detected that you have configured the necessary Python module!
    
    vIt is detected that you have configured the necessary Python environmemt!
    
    vIt is detected that you have configured the necessary Python module!
Flavor: r-oldrel-windows-ix86+x86_64