rOpenSci | Using bib2df to parse the R Journal archives
Reported on: May 29, 2019

Using bib2df to parse the R Journal archives

English • By Maëlle Salmon • Featuring: bib2df

Package or resource used*

bib2df

URL or code snippet for your use case*

https://blog.r-hub.io/2019/05/29/keep-up-with-cran/

journal <- bib2df::bib2df("https://journal.r-project.org/archive/RJournal.bib")
knitr::kable(
  journal[grepl("CRAN", journal$TITLE), c("TITLE", "MONTH", "YEAR", "URL")]
)

Sector

other

Field(s) of application

R package development

What did you do?

I used bib2df to parse the bibliography file containing information about all previous articles of the R Journal, to then filter articles whose title contained the word “CRAN”, since I wanted to see how often the CRAN team had published articles giving updates on their policies and processes.