Using bib2df to parse the R Journal archives

Package or resource used*

bib2df

URL or code snippet for your use case*

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

Twitter handle

@ma_salmon, @rhub_

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.

3 Likes

Wow! I have to take a look on this package. I’m working in a project rather adapted to personal requirements and oriented to JabRef: biblio (see functions read_bib() and write_bib()).