Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I extract the names of all package authors from CRAN

Tags:

r

cran

To celebrate the 100,000th question in the r tag, I'd like to create a list of the names of all package authors on CRAN.

Initially, I thought I could do this using available.packages() but sadly this doesn't contain a column of the authors.

pdb <- available.packages()
colnames(pdb)

 [1] "Package"               "Version"               "Priority"             
 [4] "Depends"               "Imports"               "LinkingTo"            
 [7] "Suggests"              "Enhances"              "License"              
[10] "License_is_FOSS"       "License_restricts_use" "OS_type"              
[13] "Archs"                 "MD5sum"                "NeedsCompilation"     
[16] "File"                  "Repository"   

This information is available in the DESCRIPTION file for each package. So I can think of two brute force ways, neither of which are very elegant:

  1. Download each of the 6,878 packages and read the DESCRIPTION file using base::read.dcf()

  2. Scrape each of the package pages on CRAN. For example, https://cran.r-project.org/web/packages/MASS/index.html tells me that Brian Ripley is the author of MASS.

I don't want to download all of CRAN to answer this question. And I don't want to scrape the HTML either, since the information in the DESCRIPTION file is a neatly formatted list of person objects (see ?person).

How can I use the information on CRAN to easily build a list of package authors?

like image 660
Andrie Avatar asked Jul 22 '15 16:07

Andrie


2 Answers

Why not use Gabor's API for CRAN packages?

e.g. http://crandb.r-pkg.org/MASS

library("httr")
content(GET("http://crandb.r-pkg.org/MASS"))$Author
[1] "Brian Ripley [aut, cre, cph],\nBill Venables [ctb],\nDouglas M. Bates [ctb],\nKurt Hornik [trl] (partial port ca 1998),\nAlbrecht Gebhardt [trl] (partial port ca 1998),\nDavid Firth [ctb]"
like image 86
sckott Avatar answered Oct 24 '22 09:10

sckott


Taken from reverse_dependencies_with_maintainers, which was available at one point on the R developer site (I don't see it there now):

  description <- sprintf("%s/web/packages/packages.rds",
                          getOption("repos")["CRAN"])
  con <- if(substring(description, 1L, 7L) == "file://") {
       file(description, "rb")
  } else {
      url(description, "rb")
  }
  db <- as.data.frame(readRDS(gzcon(con)),stringsAsFactors=FALSE)
  close(con)
  rownames(db) <- NULL

  head(db$Author)
  head(db$"Authors@R")

Where Authors@R exists it might be parseable into something better using dget()

getAuthor <- function(x){
  if(is.na(x)) return(NA)
  a <- textConnection(x)
  on.exit(close(a))
  dget(a)
}
authors <- lapply(db$"Authors@R", getAuthor)
head(authors)

[[1]]
[1] NA

[[2]]
[1] "Gaurav Sood <[email protected]> [aut, cre]"

[[3]]
[1] "Csillery Katalin <[email protected]> [aut]"
[2] "Lemaire Louisiane [aut]"                         
[3] "Francois Olivier [aut]"                          
[4] "Blum Michael <[email protected]> [aut, cre]"  

[[4]]
[1] NA

[[5]]
[1] "Csillery Katalin <[email protected]> [aut]"
[2] "Lemaire Louisiane [aut]"                         
[3] "Francois Olivier [aut]"                          
[4] "Blum Michael <[email protected]> [aut, cre]"  

[[6]]
[1] NA
like image 38
Ben Bolker Avatar answered Oct 24 '22 10:10

Ben Bolker