Looking Up R / CRAN Package Maintainers With an ac.uk Affiliation
[This article was first published on Rstats – OUseful.Info, the blog…, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Trying to find an examiner for a particular PhD thesis relating to a rather interesting datastructure for wrangling messy datatables, I wondered whether we might find a likely suspect amongst the R package maintainer community.
We can get a list of R package maintainers here and a list of package name / short descriptions here.
FWIW, here’s the code fragment:
import pandas as pd maintainers = pd.read_html('https://cran.r-project.org/web/checks/check_summary_by_maintainer.html')[0] maintainers_email = maintainers.dropna(subset=[0]) maintainers_email[maintainers_email[0].str.contains('.ac.uk')][[0,1]] packages = pd.read_html('https://cran.r-project.org/web/packages/available_packages_by_name.html')[0] packages maintainers_email_acuk = maintainers_email[maintainers_email[0].str.contains('.ac.uk')][[0,1]] maintainers_email_acuk.merge(packages,left_on=1,right_on=0)
See also: What Do you Mean You Write Code EVERY DAY?, examples of which I’ve just turned into a new blog category: WDYMYWCED.
To leave a comment for the author, please follow the link and comment on their blog: Rstats – OUseful.Info, the blog….
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.