I wish to go through a package and discover who are the authors mentioned for each function's help file.
I looked for a function to extract elements from R's help file, and could find one. The closest I could find is this post, from Noam Ross.
Does such a function exist? (if not, I guess I'll hack Noam's code in order to parse the Rd file, and locate the specific element I'm interested in).
Thanks, Tal.
Potential code example:
get_field_from_r_help(topic="lm", field = "Description") #
# output:
‘lm’ is used to fit linear models. It can be used to carry out regression, single stratum analysis of variance and analysis of covariance (although ‘aov’ may provide a more convenient interface for these).
This document by Duncan Murdoch on parsing Rd files will be helpful, as will this SO post.
From these, you could probably try something like the following:
We can then run this on a package or two:
And maybe tools:
Some functions have no author field, so this just drops those when it calls
unlist
at the end ofgetauthors
, but the code could be modified slightly to returnNULL
values for those.Also, further parsing is going to become a little bit difficult because package authors seem to use this field in very different ways. There's only one author field in devtools. There are a bunch in car, each of which contains an email address. Etc, etc. But this gets you to the available info, which you should be able to work with further.
Note: My previous version of this answer provided a solution if you have the full path of an Rd file, but didn't work if you were trying to do this for an installed package. Following Tyler's advice, I've worked out a more complete solution.