CRAN Package Check Results for Package censReg

Last updated on 2024-06-14 05:00:10 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.5-38 6.94 102.34 109.28 OK
r-devel-linux-x86_64-debian-gcc 0.5-38 5.56 60.29 65.85 ERROR
r-devel-linux-x86_64-fedora-clang 0.5-38 136.08 OK
r-devel-linux-x86_64-fedora-gcc 0.5-38 148.51 OK
r-devel-windows-x86_64 0.5-38 6.00 113.00 119.00 OK
r-patched-linux-x86_64 0.5-38 6.93 99.07 106.00 OK
r-release-linux-x86_64 0.5-38 6.84 96.41 103.25 OK
r-release-macos-arm64 0.5-38 62.00 OK
r-release-macos-x86_64 0.5-38 85.00 OK
r-release-windows-x86_64 0.5-38 6.00 115.00 121.00 OK
r-oldrel-macos-arm64 0.5-38 58.00 OK
r-oldrel-macos-x86_64 0.5-38 153.00 OK
r-oldrel-windows-x86_64 0.5-38 8.00 122.00 130.00 OK

Check Details

Version: 0.5-38
Check: package dependencies
Result: NOTE Package suggested but not available for checking: ‘AER’ Package which this enhances but not available for checking: ‘sampleSelection’ Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.5-38
Check: examples
Result: ERROR Running examples in ‘censReg-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: censReg > ### Title: Censored Regression (Tobit) Model > ### Aliases: censReg print.censReg > ### Keywords: models regression > > ### ** Examples > > ## Kleiber & Zeileis ( 2008 ), page 142 > data( "Affairs", package = "AER" ) Error in find.package(package, lib.loc, verbose = verbose) : there is no package called ‘AER’ Calls: data -> find.package Execution halted Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.5-38
Check: tests
Result: ERROR Running ‘censRegFail.R’ [1s/2s] Running ‘censRegPanelLargerTest.R’ [3s/4s] Comparing ‘censRegPanelLargerTest.Rout’ to ‘censRegPanelLargerTest.Rout.save’ ... OK Running ‘censRegPanelTest.R’ [10s/15s] Comparing ‘censRegPanelTest.Rout’ to ‘censRegPanelTest.Rout.save’ ... OK Running ‘censRegTest.R’ [1s/2s] Running the tests in ‘tests/censRegFail.R’ failed. Complete output: > library( "censReg" ) Loading required package: maxLik Loading required package: miscTools Please cite the 'maxLik' package as: Henningsen, Arne and Toomet, Ott (2011). maxLik: A package for maximum likelihood estimation in R. Computational Statistics 26(3), 443-458. DOI 10.1007/s00180-010-0217-1. If you have questions, suggestions, or comments regarding the 'maxLik' package, please use a forum or 'tracker' at maxLik's R-Forge site: https://r-forge.r-project.org/projects/maxlik/ Please cite the 'censReg' package as: Henningsen, Arne (2017). censReg: Censored Regression (Tobit) Models. R package version 0.5. http://CRAN.R-Project.org/package=censReg. If you have questions, suggestions, or comments regarding the 'censReg' package, please use a forum or 'tracker' at the R-Forge site of the 'sampleSelection' project: https://r-forge.r-project.org/projects/sampleselection/ > > data( "Affairs", package = "AER" ) Error in find.package(package, lib.loc, verbose = verbose) : there is no package called 'AER' Calls: data -> find.package Execution halted Running the tests in ‘tests/censRegTest.R’ failed. Complete output: > library( "censReg" ) Loading required package: maxLik Loading required package: miscTools Please cite the 'maxLik' package as: Henningsen, Arne and Toomet, Ott (2011). maxLik: A package for maximum likelihood estimation in R. Computational Statistics 26(3), 443-458. DOI 10.1007/s00180-010-0217-1. If you have questions, suggestions, or comments regarding the 'maxLik' package, please use a forum or 'tracker' at maxLik's R-Forge site: https://r-forge.r-project.org/projects/maxlik/ Please cite the 'censReg' package as: Henningsen, Arne (2017). censReg: Censored Regression (Tobit) Models. R package version 0.5. http://CRAN.R-Project.org/package=censReg. If you have questions, suggestions, or comments regarding the 'censReg' package, please use a forum or 'tracker' at the R-Forge site of the 'sampleSelection' project: https://r-forge.r-project.org/projects/sampleselection/ > library( "lmtest" ) Loading required package: zoo Attaching package: 'zoo' The following objects are masked from 'package:base': as.Date, as.Date.numeric > library( "sandwich" ) > > options( digits = 5 ) > > printAll <- function( x, logSigmaFalse = FALSE, sDigits = 2, + meCalcVCov = TRUE, meReturnJacobian = FALSE, + sumMeCalcVCov = TRUE, sumMeReturnJacobian = FALSE ) { + for( n in names( x ) ) { + if( ! n %in% c( "code", "message", "iterations" ) ) { + cat( "$", n, "\n", sep = "" ) + if( n %in% c( "hessian" ) ) { + print( round( x[[ n ]], 1 ) ) + } else if( n %in% c( "estimate", "gradientObs" ) ) { + print( round( x[[ n ]], 2 ) ) + } else if( n %in% c( "gradient" ) ) { + print( round( x[[ n ]], 3 ) ) + } else { + print( x[[ n ]] ) + } + cat( "\n" ) + } + } + cat( "class\n" ) + print( class( x ) ) + + cat( "print( x, digits = 2 )\n" ) + print( x, digits = 2 ) + + if( logSigmaFalse ) { + cat( "print( x, logSigma = FALSE, digits = 2 )\n" ) + print( x, logSigma = FALSE, digits = 2 ) + } + + cat( "print( round( margEff( x ), digits = 2 ) )\n" ) + print( round( margEff( x, calcVCov = meCalcVCov, + returnJacobian = meReturnJacobian ), 2 ) ) + + cat( "printME( margEff( x ) )\n" ) + printME( margEff( x, calcVCov = meCalcVCov, + returnJacobian = meReturnJacobian ) ) + + cat( "print( summary( margEff( x ) ), digits = sDigits )\n" ) + print( summary( margEff( x, calcVCov = sumMeCalcVCov, + returnJacobian = sumMeReturnJacobian ) ), digits = sDigits ) + + x$code <- 0 + x$message <- "removed message" + x$iterations <- 0 + + cat( "print( maxLik:::summary.maxLik( x ), sDigits )\n" ) + print( maxLik:::summary.maxLik( x ), digits = sDigits ) + + cat( "print( summary( x ), digits = sDigits )\n" ) + print( summary( x ), digits = sDigits ) + + if( logSigmaFalse ) { + cat( "print( summary( x ), logSigma = FALSE, digits = sDigits )\n" ) + print( summary( x ), logSigma = FALSE, digits = sDigits ) + } + } > > printME <- function( x ) { + print( round( x, 3 ) ) + y <- attributes( x ) + for( n in names( y ) ) { + if( ! n %in% c( "names" ) ) { + cat( "attr(,\"", n, "\")\n", sep = "" ) + if( n %in% c( "vcov" ) ) { + print( round( y[[ n ]], 3 ) ) + } else if( n %in% c( "jacobian" ) ) { + print( round( y[[ n ]], 3 ) ) + } else { + print( y[[ n ]] ) + } + } + } + } > > data( "Affairs", package = "AER" ) Error in find.package(package, lib.loc, verbose = verbose) : there is no package called 'AER' Calls: data -> find.package Execution halted Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.5-38
Check: re-building of vignette outputs
Result: NOTE Note: skipping ‘censReg.Rnw’ due to unavailable dependencies: 'AER' Flavor: r-devel-linux-x86_64-debian-gcc