Sebastian Meyer
Sebastian Meyer
`package_coverage(..., code = character())` allows for additional test code to be run. The `code` argument should be a character vector of lines of code. This currently fails for `length(code) >...
`R CMD check` does not report warnings from running the examples. I do not want to miss those warnings for the packages I maintain. For example, changes in a package...
Profiling `coef.mboost` for a colleague, I have noticed that it seems to waste time to "check if base-learner has coefficients" here: https://github.com/boost-R/mboost/blob/021e406f40018b23727f6b75c1f2297e82cc1c7c/R/mboost.R#L430 I don't know what the original intention was...
Setting labels for a subset of the variables is supported by the argument `which` of the `labels
The result of `summarize_numeric` contains the variable names as row names if `labels = TRUE`. These row names are printed in markdown output via the default `knitr::kable()`, which is unintended....
https://github.com/thomasp85/densityClust/blob/2261766cdf9ed6c5bf51556398e95cffb903c796/man/densityClust-package.Rd#L3-L5 The package overview help page lacks the conventional `\alias{-package}` topic, which means: - it is missing from the HTML index - it is not found via `package?` and cannot...
Markdown mode in **roxygen2** does not escape braces and this seems to be intended: https://github.com/r-lib/roxygen2/blob/47e1c76b40b974f4e1c10533c3d41d3889775fac/tests/testthat/test-markdown-link.R#L61-L62 However, many developers don't know that braces need to be escaped in LaTeX-like text in...
When a chunk is evaluated under `error=TRUE`, **knitr** catches errors as the code is declared to fail. The `hook_purl()`-produced R script, however, does not currently account for that. Here is...
The `check_encoding()` auxiliary function verifies the specified input `encoding` via `iconvlist()` https://github.com/tidyverse/readr/blob/e529cb2775f1b52a0dfa30dabc9f8e0014aa77e6/R/locale.R#L132 and rejects any non-listed encoding. Unfortunately, this unnecessarily breaks `locale()` on platforms where `iconvlist()` is incomplete. As `?iconvlist`...
The intention of #2264 was "if multiple URLs are present, drop all but the first" and that is also what is documented in `help(write_bib)`: > the first URL listed in...