CRAN Package Check Results for Package EasyMARK

Last updated on 2021-02-05 15:54:09 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.0 3.23 28.52 31.75 NOTE
r-devel-linux-x86_64-debian-gcc 1.0 2.59 22.59 25.18 ERROR
r-devel-linux-x86_64-fedora-clang 1.0 47.66 NOTE
r-devel-linux-x86_64-fedora-gcc 1.0 37.23 NOTE
r-devel-windows-ix86+x86_64 1.0 7.00 47.00 54.00 NOTE
r-patched-linux-x86_64 1.0 2.99 27.53 30.52 NOTE
r-patched-solaris-x86 1.0 65.80 NOTE
r-release-linux-x86_64 1.0 2.66 27.63 30.29 NOTE
r-release-macos-x86_64 1.0 NOTE
r-release-windows-ix86+x86_64 1.0 6.00 45.00 51.00 NOTE
r-oldrel-macos-x86_64 1.0 NOTE
r-oldrel-windows-ix86+x86_64 1.0 4.00 34.00 38.00 NOTE

Check Details

Version: 1.0
Check: DESCRIPTION meta-information
Result: NOTE
    Malformed Title field: should not end in a period.
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-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-macos-x86_64, r-release-windows-ix86+x86_64, r-oldrel-macos-x86_64, r-oldrel-windows-ix86+x86_64

Version: 1.0
Check: R code for possible problems
Result: NOTE
    MARK.MCMC : Model.Creator: no visible global function definition for
     'combn'
    MARK.MCMC : formula.Maker: no visible global function definition for
     'combn'
    Simulate.CH: no visible global function definition for 'rnorm'
    Simulate.CH: no visible global function definition for 'rbinom'
    Undefined global functions or variables:
     combn rbinom rnorm
    Consider adding
     importFrom("stats", "rbinom", "rnorm")
     importFrom("utils", "combn")
    to your NAMESPACE file.
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-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-macos-x86_64, r-release-windows-ix86+x86_64, r-oldrel-macos-x86_64, r-oldrel-windows-ix86+x86_64

Version: 1.0
Check: examples
Result: ERROR
    Running examples in ‘EasyMARK-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: Maker.CH
    > ### Title: Make a capture history from dates.
    > ### Aliases: Maker.CH
    > ### Keywords: utilities
    >
    > ### ** Examples
    >
    >
    > #' our date vector, which should line up with the id vector
    > #' we would normally pull this from a data.frame from an external source
    > dates = c("2012_07_05","2012_07_01","2012_07_01", "2012_07_02", "2012_07_07",
    + "2012_07_01", "2012_07_03", "2012_07_07")
    >
    > #' ids lined up with our dates. Each id is repeated for each day seen, including the day
    > #' it was marked.
    > id = c("B","B","A","A","A","C","C","C")
    >
    > #' See that our vectors are the same length
    > length(id)
    [1] 8
    > length(dates)
    [1] 8
    >
    > #' date.format can be in a variety of forms:
    > #' "%Y_%m_%d" = 2012_07_01
    > #' "%Y:%m:%d" = 2012:07:01
    > #' "%Y-%m-%d" = 2012-07-01
    > #' "%m-%Y-%d" = 07-2012-01
    > #' "%d-%m-%Y" = 01-07-2012
    > #' and so on...
    >
    > #' run our function
    > ch = Maker.CH(dates = dates, id = id, date.format = "%Y_%m_%d")
    Error in xtfrm.data.frame(x) : cannot xtfrm data frames
    Calls: Maker.CH ... lapply -> FUN -> as.vector -> xtfrm -> xtfrm.data.frame
    Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc