CRAN Package Check Results for Package lme4

Last updated on 2016-02-26 00:47:32.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-gcc 1.1-11 41.09 418.15 459.25 NOTE
r-devel-linux-x86_64-fedora-clang 1.1-11 890.42 NOTE
r-devel-linux-x86_64-fedora-gcc 1.1-11 605.69 NOTE
r-devel-osx-x86_64-clang 1.1-11 765.76 NOTE
r-devel-windows-ix86+x86_64 1.1-11 159.00 1031.00 1190.00 NOTE
r-patched-linux-x86_64 1.1-11 41.72 436.84 478.56 NOTE
r-patched-solaris-sparc 1.1-11 2882.70 ERROR
r-patched-solaris-x86 1.1-11 1002.80 NOTE
r-release-linux-x86_64 1.1-11 41.83 436.62 478.45 NOTE
r-release-osx-x86_64-mavericks 1.1-11 NOTE
r-release-windows-ix86+x86_64 1.1-11 159.00 1116.00 1275.00 NOTE
r-oldrel-windows-ix86+x86_64 1.1-11 164.00 198.00 362.00 ERROR

Memtest notes: clang-UBSAN clang-UBSAN gcc6-UBSAN gcc6-UBSAN gcc-UBSAN gcc-UBSAN

Check Details

Version: 1.1-11
Check: installed package size
Result: NOTE
     installed size is 23.9Mb
     sub-directories of 1Mb or more:
     doc 1.8Mb
     libs 18.6Mb
     testdata 1.5Mb
Flavors: r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-osx-x86_64-clang, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-sparc, r-patched-solaris-x86, r-release-linux-x86_64, r-release-osx-x86_64-mavericks, r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64

Version: 1.1-11
Check: tests
Result: ERROR
    Running the tests in ‘tests/AAAtest-all.R’ failed.
    Last 13 lines of output:
     1 1.631 1.631 4.39e-06
     2 0.767 0.767 -6.96e-06
     3 1.011 1.011 -6.23e-06
     4 1.512 1.512 -2.66e-06
     5 -0.615 -0.615 7.45e-06
     6 -0.610 -0.610 6.99e-06
    
     testthat results ================================================================
     OK: 679 SKIPPED: 0 FAILED: 1
     1. Failure (at test-nbinom_refit.R#18): glmer refit
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-patched-solaris-sparc

Version: 1.1-11
Check: re-building of vignette outputs
Result: NOTE
    Error in re-building vignettes:
     ...
    Computing bootstrap confidence intervals ...
    Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, :
     Running 'texi2dvi' on 'lmer.tex' failed.
    LaTeX errors:
    ! Undefined control sequence.
    l.15 x<9c><ed>\Mh
     ^^TK^^P<ae><97>(q$<ee>؈!.L6^^L/($oYX^^Hx^^H<eb>!<a0>'o<de><<eb>ٓ^^A/<a2>O<f0>]ċ^^G<f5>^^]<84><e7>A...
    The control sequence at the end of the top line
    of your error message was never \def'ed. If you have
    ! LaTeX Error: Missing \begin{document}.
    
    See the LaTeX manual or LaTeX Companion for explanation.
    Type H <return> for immediate help.
     ...
    ! Missing $ inserted.
    <inserted text>
     $
    l.16 ...F<a0><ba>v<ed>Zggg<ad>V{<fd><fa>5^^Q9<8e>388866<a6><94><8a><e3>^^X<fd>^^]<c7><c1><83><ae>^
     <bd><9a>J<a5>l<db>v^^\^^G<9f>J<a9><87>^^O^^_<c6>q|...
    ! Extra }, or forgotten $.
    l.17 Ԓ<da>[}
     <b8>ӄ<f6><a0><9c>0^^L<89>(<9b><cd><e2>^^A<98><ce>0^^L<0b><85>^^BOm<b9>\^^^^^Z^^Z<8a><a2><88><a7>?<9b><cd>"@a<ce>0<8e>eYP{<a1>P<c0>O<<c8><e3>...
    I've deleted a group-closing
    Calls: buildVignettes -> texi2pdf -> texi2dvi
    Execution halted
Flavor: r-release-osx-x86_64-mavericks

Version: 1.1-11
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'lme4-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: drop1.merMod
    > ### Title: Drop all possible single fixed-effect terms from a mixed effect
    > ### model
    > ### Aliases: drop1.merMod
    > ### Keywords: misc
    >
    > ### ** Examples
    >
    > fm1 <- lmer(Reaction~Days+(Days|Subject),sleepstudy)
    > ## likelihood ratio tests
    > drop1(fm1,test="Chisq")
    Single term deletions
    
    Model:
    Reaction ~ Days + (Days | Subject)
     Df AIC LRT Pr(Chi)
    <none> 1763.9
    Days 1 1785.5 23.537 1.226e-06 ***
    ---
    Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
    > ## use Kenward-Roger corrected F test, or parametric bootstrap,
    > ## to test the significance of each dropped predictor
    > if (require(pbkrtest) && packageVersion("pbkrtest")>="0.3.8") {
    + KRSumFun <- function(object, objectDrop, ...) {
    + krnames <- c("ndf","ddf","Fstat","p.value","F.scaling")
    + r <- if (missing(objectDrop)) {
    + setNames(rep(NA,length(krnames)),krnames)
    + } else {
    + krtest <- KRmodcomp(object,objectDrop)
    + unlist(krtest$stats[krnames])
    + }
    + attr(r,"method") <- c("Kenward-Roger via pbkrtest package")
    + r
    + }
    + drop1(fm1,test="user",sumFun=KRSumFun)
    +
    + if(lme4:::testLevel() >= 3) { ## takes about 16 sec
    + nsim <- 100
    + PBSumFun <- function(object, objectDrop, ...) {
    + pbnames <- c("stat","p.value")
    + r <- if (missing(objectDrop)) {
    + setNames(rep(NA,length(pbnames)),pbnames)
    + } else {
    + pbtest <- PBmodcomp(object,objectDrop,nsim=nsim)
    + unlist(pbtest$test[2,pbnames])
    + }
    + attr(r,"method") <- c("Parametric bootstrap via pbkrtest package")
    + r
    + }
    + system.time(drop1(fm1,test="user",sumFun=PBSumFun))
    + }
    + }
    Loading required package: pbkrtest
    Note: method with signature 'sparseMatrix#ANY' chosen for function 'kronecker',
     target signature 'dgCMatrix#ngCMatrix'.
     "ANY#sparseMatrix" would also be valid
    Error in cbind(do.call(cbind, SigmaG$G), X) :
     number of rows of matrices must match (see arg 2)
    Calls: drop1 ... vcovAdj -> vcovAdj.lmerMod -> vcovAdj16_internal -> cbind
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64

Version: 1.1-11
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'lme4-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: drop1.merMod
    > ### Title: Drop all possible single fixed-effect terms from a mixed effect
    > ### model
    > ### Aliases: drop1.merMod
    > ### Keywords: misc
    >
    > ### ** Examples
    >
    > fm1 <- lmer(Reaction~Days+(Days|Subject),sleepstudy)
    > ## likelihood ratio tests
    > drop1(fm1,test="Chisq")
    Single term deletions
    
    Model:
    Reaction ~ Days + (Days | Subject)
     Df AIC LRT Pr(Chi)
    <none> 1763.9
    Days 1 1785.5 23.537 1.226e-06 ***
    ---
    Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
    > ## use Kenward-Roger corrected F test, or parametric bootstrap,
    > ## to test the significance of each dropped predictor
    > if (require(pbkrtest) && packageVersion("pbkrtest")>="0.3.8") {
    + KRSumFun <- function(object, objectDrop, ...) {
    + krnames <- c("ndf","ddf","Fstat","p.value","F.scaling")
    + r <- if (missing(objectDrop)) {
    + setNames(rep(NA,length(krnames)),krnames)
    + } else {
    + krtest <- KRmodcomp(object,objectDrop)
    + unlist(krtest$stats[krnames])
    + }
    + attr(r,"method") <- c("Kenward-Roger via pbkrtest package")
    + r
    + }
    + drop1(fm1,test="user",sumFun=KRSumFun)
    +
    + if(lme4:::testLevel() >= 3) { ## takes about 16 sec
    + nsim <- 100
    + PBSumFun <- function(object, objectDrop, ...) {
    + pbnames <- c("stat","p.value")
    + r <- if (missing(objectDrop)) {
    + setNames(rep(NA,length(pbnames)),pbnames)
    + } else {
    + pbtest <- PBmodcomp(object,objectDrop,nsim=nsim)
    + unlist(pbtest$test[2,pbnames])
    + }
    + attr(r,"method") <- c("Parametric bootstrap via pbkrtest package")
    + r
    + }
    + system.time(drop1(fm1,test="user",sumFun=PBSumFun))
    + }
    + }
    Loading required package: pbkrtest
    Note: method with signature 'sparseMatrix#ANY' chosen for function 'kronecker',
     target signature 'dgCMatrix#ngCMatrix'.
     "ANY#sparseMatrix" would also be valid
    Error in cbind(do.call(cbind, SigmaG$G), X) :
     number of rows of matrices must match (see arg 2)
    Calls: drop1 ... vcovAdj -> vcovAdj.lmerMod -> vcovAdj16_internal -> cbind
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64