0 errors | 0 warnings | 1 note
- This is a new release.
- Missing Rd-Tags: all exported functions document their return value.
- Examples for unexported function:
internal functions use the
@noRdtag. The use of tripple colons (foo:::function) in@exampleswas omitted. - Please do not install packages in your functions, examples or vignette:
Function examples that would install additional software are wrapped in
\dontrun{}as recommended in CRAN Cookbook. This applies to most examples because this package is a wrapper around thebirdnetPython package. Here we usereticulate::py_require()(the recommended approach) to install thebirdnetPython package in a virtual environment. Because this happens on demand, any interaction either installs the Python packag plus its dependencies, or downloads the BirdNET model.
This is a resubmission. In this version I have:
- Fixed the issue with the
kerasPython package writting to the user home directory. The packag now usestools::R_user_dir()to set the environemntal variable 'KERAS_HOME'. The package now depends on R >= 4.0