DescTools (version 0.99.37)

FctArgs: Retrieve a Function's Arguments

Description

Retrieve a function's arguments and default values in a list.

Usage

FctArgs(name, sort = FALSE)

Arguments

name

name of the function.

sort

logical. Should the function arguments be sorted? Defaults to FALSE.

Value

a data.frame with the default in the first columns and with row.names as argument names.

See Also

formalArgs, formals, args, alist, body

Examples

Run this code
# NOT RUN {
formalArgs(PlotFdist)
formals(PlotFdist)

# compare:
FctArgs(PlotFdist)
# }

Run the code above in your browser using DataCamp Workspace