You can use lsf.str .
For instance:
lsf.str("package:dplyr")
To list all objects in a package, use ls
ls("package:dplyr")
Please note that the package must be downloaded.
To view a list of downloadable packages, use
search()
Alternatively, a help call will also be executed even if the package is not loaded:
help(package = dplyr)
Finally, you can use RStudio, which provides an autocomplete function. So, for example, typing dplyr:: in the console or while editing a file you will get a popup list of all dplyr functions / objects.
source share