Cast an S3-object of class "checkglobalsg"
to a data.frame.
Usage
# S3 method for checkglobalsg
as.data.frame(x, row.names = NULL, optional = FALSE, pattern, ...)
Arguments
- x
object inheriting from class
"checkglobalsg"
.- row.names
currently not used, included for compatibility with
as.data.frame
generic.- optional
currently not used, included for compatibility with
as.data.frame
generic.- 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 output:
all.names
, a logical value. IfTRUE
, all object names are returned. IfFALSE
, names which begin with a . are omitted. Defaults toTRUE
.sorted
, a logical value indicating if the function/variable names should be sorted alphabetically. Defaults toTRUE
.
Value
a data.frame similar in format to as.data.frame.checkglobals
.
Examples
## R-package from folder
chk <- checkglobals(
pkg = system.file(
"unit_tests", "pkg", "testpkg",
package = "checkglobals"
)
)
as.data.frame(chk$globals)
#> name package type
#> 1 g <NA> global