Skip to content

Instantly share code, notes, and snippets.

View ojmarcelino's full-sized avatar

Juliano Marcelino ojmarcelino

View GitHub Profile
@jabranham
jabranham / analyze-bib-file.R
Last active March 24, 2019 16:32
analyze-bib-file
library(tidyverse)
library(bibtex)
theme_set(theme_minimal())
## You'll need to modify the next line to wherever your bib file is
entries <- read.bib("~/Dropbox/bibliography/references.bib")
lentries <- length(entries)
years <- list(lentries)
type <- list(lentries)