CRAN Package Check Results for Package RMark

Last updated on 2022-08-15 08:50:06 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 2.2.7 22.39 139.09 161.48 OK --install=fake --no-examples --no-tests --no-vignettes
r-devel-linux-x86_64-debian-gcc 3.0.0 18.08 105.00 123.08 OK --install=fake --no-examples --no-tests --no-vignettes
r-devel-linux-x86_64-fedora-clang 3.0.0 231.51 OK
r-devel-linux-x86_64-fedora-gcc 3.0.0 235.09 OK
r-devel-windows-x86_64 3.0.0 57.00 177.00 234.00 OK
r-patched-linux-x86_64 2.2.7 24.46 129.45 153.91 OK --install=fake --no-examples --no-tests --no-vignettes
r-release-linux-x86_64 3.0.0 18.62 127.43 146.05 OK --install=fake --no-examples --no-tests --no-vignettes
r-release-macos-arm64 3.0.0 55.00 ERROR
r-release-macos-x86_64 2.2.7 86.00 ERROR
r-release-windows-x86_64 3.0.0 70.00 180.00 250.00 OK
r-oldrel-macos-arm64 3.0.0 56.00 ERROR
r-oldrel-macos-x86_64 2.2.7 84.00 ERROR
r-oldrel-windows-ix86+x86_64 2.2.7 37.00 187.00 224.00 OK

Check Details

Version: 3.0.0
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     Warning: Software mark not found in path.
Flavors: r-release-macos-arm64, r-oldrel-macos-arm64

Version: 3.0.0
Check: examples
Result: ERROR
    Running examples in ‘RMark-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: Blackduck
    > ### Title: Black duck known fate data
    > ### Aliases: Blackduck
    > ### Keywords: datasets
    >
    > ### ** Examples
    >
    >
    > data(Blackduck)
    > # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
    > # no longer allowed. They can work as in this example but they can be misleading
    > # and fail if the levels are non-numeric. The real parameters will remain
    > # unchanged but the betas will be different.
    > Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
    > run.Blackduck=function()
    + {
    + #
    + # Process data
    + #
    + bduck.processed=process.data(Blackduck,model="Known")
    + #
    + # Create default design data
    + #
    + bduck.ddl=make.design.data(bduck.processed)
    + #
    + # Add occasion specific data min < 0; I have no idea what it is
    + #
    + bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
    + #
    + # Define range of models for S
    + #
    + S.dot=list(formula=~1)
    + S.time=list(formula=~time)
    + S.min=list(formula=~min)
    + S.BirdAge=list(formula=~BirdAge)
    + #
    + # Note that in the following model in the MARK example, the covariates
    + # have been standardized. That means that the beta parameters will be different
    + # for BirdAge, Weight and their interaction but the likelihood and real parameter
    + # estimates are the same.
    + #
    + S.BirdAgexWeight.min=list(formula=~min+BirdAge*Weight)
    + S.BirdAge.Weight=list(formula=~BirdAge+Weight)
    + #
    + # Create model list and run assortment of models
    + #
    + model.list=create.model.list("Known")
    + bduck.results=mark.wrapper(model.list,data=bduck.processed,ddl=bduck.ddl,
    + invisible=FALSE,threads=1,delete=TRUE)
    +
    + #
    + # Return model table and list of models
    + #
    + return(bduck.results)
    + }
    > bduck.results=run.Blackduck()
    
    S.BirdAge
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.BirdAge.Weight
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.BirdAgexWeight.min
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.dot
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.min
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.time
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    No mark models found
    
    Error in collect.models() :
    Calls: run.Blackduck -> mark.wrapper -> collect.models
    Execution halted
Flavors: r-release-macos-arm64, r-oldrel-macos-arm64

Version: 2.2.7
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     Warning: Software mark not found in path.
Flavors: r-release-macos-x86_64, r-oldrel-macos-x86_64

Version: 2.2.7
Check: examples
Result: ERROR
    Running examples in ‘RMark-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: Blackduck
    > ### Title: Black duck known fate data
    > ### Aliases: Blackduck
    > ### Keywords: datasets
    >
    > ### ** Examples
    >
    >
    > data(Blackduck)
    > # Change BirdAge to numeric; starting with version 1.6.3 factor variables are
    > # no longer allowed. They can work as in this example but they can be misleading
    > # and fail if the levels are non-numeric. The real parameters will remain
    > # unchanged but the betas will be different.
    > Blackduck$BirdAge=as.numeric(Blackduck$BirdAge)-1
    > run.Blackduck=function()
    + {
    + #
    + # Process data
    + #
    + bduck.processed=process.data(Blackduck,model="Known")
    + #
    + # Create default design data
    + #
    + bduck.ddl=make.design.data(bduck.processed)
    + #
    + # Add occasion specific data min < 0; I have no idea what it is
    + #
    + bduck.ddl$S$min=c(4,6,7,7,7,6,5,5)
    + #
    + # Define range of models for S
    + #
    + S.dot=list(formula=~1)
    + S.time=list(formula=~time)
    + S.min=list(formula=~min)
    + S.BirdAge=list(formula=~BirdAge)
    + #
    + # Note that in the following model in the MARK example, the covariates
    + # have been standardized. That means that the beta parameters will be different
    + # for BirdAge, Weight and their interaction but the likelihood and real parameter
    + # estimates are the same.
    + #
    + S.BirdAgexWeight.min=list(formula=~min+BirdAge*Weight)
    + S.BirdAge.Weight=list(formula=~BirdAge+Weight)
    + #
    + # Create model list and run assortment of models
    + #
    + model.list=create.model.list("Known")
    + bduck.results=mark.wrapper(model.list,data=bduck.processed,ddl=bduck.ddl,
    + invisible=FALSE,threads=1)
    +
    + #
    + # Return model table and list of models
    + #
    + return(bduck.results)
    + }
    > bduck.results=run.Blackduck()
    
    S.BirdAge
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.BirdAge.Weight
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.BirdAgexWeight.min
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.dot
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.min
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    S.time
    
    sh: mark: command not found
    Warning in system(paste("mark i=", inputfile, " o=", outfile, " v=", vcvfile, :
     error in running command
    Error in run.mark.model(model, invisible = invisible, adjust = adjust, :
    
    Output file does not exist. Unable to find or run mark.exe
    
    
    No mark models found
    
    Error in collect.models() :
    Calls: run.Blackduck -> mark.wrapper -> collect.models
    Execution halted
Flavors: r-release-macos-x86_64, r-oldrel-macos-x86_64