How to search for a help man page for a function and specify a package in R? For example, count appears in both seqinr and plyr. If I want to see the score in plyr, which team? I tried a few obvious (but incorrect) guesses, such as "? Plyr :: count"
EDIT: When am I doing? Count, I get the following message:
Help on topic 'count' was found in the following packages: Package Library plyr /Library/Frameworks/R.framework/Versions/2.15/Resources/library seqinr /Library/Frameworks/R.framework/Versions/2.15/Resources/library
When do i do? plyr :: count, I get:
No documentation for 'plyr::count' in specified packages and libraries: you could try '??plyr::count'
When do i do? plyr: count, I get:
No documentation for 'plyr:::count' in specified packages and libraries: you could try '??plyr:::count'
Adding two question marks also does not cause errors in the documentation. Finding help on explicit functions works fine (for example, "plot")
This is with R 2.15.0 on OSX running in emacs + ESS.
source share