| Args {gdata} | R Documentation |
Display function argument names and corresponding default values, formatted in two columns for easy reading.
Args(name, sort=FALSE)
name |
a function or function name. |
sort |
whether arguments should be sorted. |
A data frame with named rows and a single column called value,
containing the default value of each argument.
Primitive functions like sum and all have no formal
arguments. See the formals help page.
Arni Magnusson
Args is a verbose alternative to args, based on
formals.
help also describes function arguments.
Args(glm) Args(scan) Args(legend, sort=TRUE)