Perhaps best asking by example, how can I get my package's Usage documentation to look like ?dplyr::mutate
(with its separate lines per argument) vs. ?stats::filter
?
The Usage sections:
## S3 method for class 'data.frame'
mutate(
.data,
...,
.by = NULL,
.keep = c("all", "used", "unused", "none"),
.before = NULL,
.after = NULL
)
vs
filter(x, filter, method = c("convolution", "recursive"),
sides = 2, circular = FALSE, init)