Learn R Programming

evanverse (version 0.4.0)

pkg_functions: List Package Functions

Description

List exported symbols from a package's NAMESPACE. Optionally filter by a case-insensitive keyword. Results are sorted alphabetically.

Usage

pkg_functions(pkg, key = NULL)

Value

Character vector of exported names (invisibly).

Arguments

pkg

Character. Package name.

key

Character. Optional keyword to filter function names (case-insensitive).

Examples

Run this code
# List all functions in evanverse:
pkg_functions("evanverse")

# Filter by keyword:
pkg_functions("evanverse", key = "plot")

Run the code above in your browser using DataLab