Print method for S3-objects of class "checkglobalsi"
characteristic
to the "imports"
list element of "checkglobals"
objects returned by checkglobals
,
check_pkg
or check_source
.
Usage
# S3 method for checkglobalsi
print(x, format = "basic", pattern, ...)
Arguments
- x
object inheriting from class
"checkglobalsi"
.- format
character, one of the following two choices:
"basic"
, (default) prints only the name and source code location of the detected imports."detail"
, prints the name and location of the detected imports, as well as the lines in the source code file comprising the detected imports. The maximum number of lines printed per source code reference can be specified usingmaxLines
.
- pattern
an optional regular expression. Only names matching
pattern
are returned.glob2rx
can be used to convert wildcard patterns to regular expressions.- ...
additional arguments to configure the printed output. The following arguments can be specified:
all.names
, a logical value. IfTRUE
, all object names are returned. IfFALSE
, names which begin with a . are omitted. Defaults toTRUE
.maxRef
, the maximum number of printed source code references per detected global/import. Defaults to 1.maxLines
, the maximum number of printed lines per source code reference, only used ifformat = "detail"
. Defaults to 5.use_cli
, a logical value indicating ifcli
should be used to format the printed output. Defaults toTRUE
, which means thatcli
-formatting is attempted ifcli
is installed.maxWidth
, the maximum column width of the printed output. Ifcli
is installed, the default width is determined bycli::console_width()
. Ifcli
is not installed,getOption("width")
is checked. IfgetOption("width")
is undefined, the column width defaults to 80.
Examples
## R-package from folder
chk <- checkglobals(
pkg = system.file(
"unit_tests", "pkg", "testpkg",
package = "checkglobals"
)
)
chk$imports
#>
#> ── Detected imported functions or variables ────────────────────────────────────
#>
#> R6 [◼◻◻◻◻◻◻◻◻◻] 1/19
#> └─ R6Class functions1.R#132
#> grid [◼◻◻◻◻◻◻◻◻◻] 1/19
#> └─ is.unit functions1.R#35
#> methods [◼◼◼◻◻◻◻◻◻◻] 3/19
#> ├─ getMethod functions1.R#67
#> ├─ setGeneric functions1.R#48
#> └─ setMethod functions1.R#49
#> parallel [◼◼◻◻◻◻◻◻◻◻] 2/19
#> └─ pvec functions1.R#88 and 1 more...
#> stats [◼◼◼◼◼◼◻◻◻◻] 6/19
#> ├─ aggregate functions1.R#87
#> ├─ approxfun functions1.R#71
#> ├─ coef functions1.R#69 and 1 more...
#> └─ median functions1.R#31 and 1 more...
#> stats4 [◼◼◻◻◻◻◻◻◻◻] 2/19
#> └─ coef functions1.R#69 and 1 more...
#> utils [◼◼◼◼◻◻◻◻◻◻] 4/19
#> ├─ globalVariables aaa.R#1 and 1 more...
#> ├─ head functions1.R#26
#> └─ tail functions1.R#65
## print selected imports
print(chk, format = "detail", pattern = "coef", which = "import", maxRef = 99)
#> ! Packages required but not installed: pkgA
#>
#> ── Detected imported functions or variables ────────────────────────────────────
#>
#> stats [◼◼◻◻◻◻◻◻◻◻] 2/4
#> └─ coef functions1.R#69 and 1 more...
#> stats4 [◼◼◻◻◻◻◻◻◻◻] 2/4
#> └─ coef functions1.R#69 and 1 more...
#>
#> ── Import source code references ───────────────────────────────────────────────
#>
#> • coef at functions1.R#69:
#> 69: stats::coef(y)
#> coef at functions1.R#70:
#> 70: stats4::coef(y)
## print without cli-formatting
print(chk$imports, use_cli = FALSE)
#>
#> ── Detected imported functions or variables ────────────────────────────────────
#>
#> R6 [◼◻◻◻◻◻◻◻◻◻] 1/19
#> • R6Class functions1.R#132
#> grid [◼◻◻◻◻◻◻◻◻◻] 1/19
#> • is.unit functions1.R#35
#> methods [◼◼◼◻◻◻◻◻◻◻] 3/19
#> • getMethod functions1.R#67
#> • setGeneric functions1.R#48
#> • setMethod functions1.R#49
#> parallel [◼◼◻◻◻◻◻◻◻◻] 2/19
#> • pvec functions1.R#88 and 1 more...
#> stats [◼◼◼◼◼◼◻◻◻◻] 6/19
#> • aggregate functions1.R#87
#> • approxfun functions1.R#71
#> • coef functions1.R#69 and 1 more...
#> • median functions1.R#31 and 1 more...
#> stats4 [◼◼◻◻◻◻◻◻◻◻] 2/19
#> • coef functions1.R#69 and 1 more...
#> utils [◼◼◼◼◻◻◻◻◻◻] 4/19
#> • globalVariables aaa.R#1 and 1 more...
#> • head functions1.R#26
#> • tail functions1.R#65