knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)
library(scrooge)

Statistical modelling of heterogeneous citation networks

Build Status AppVeyor Build Status

An R package containing utilities useful for the author's doctoral research in bibliometrics.

Install and load the package using

devtools::install_github('Selbosh/scrooge')
library(scrooge)

Bibliometric datasets

head(articles)

Journal ranking metrics

head(names(ILSR(citations, sort = TRUE)))
head(names(PageRank(citations, sort = TRUE)))
head(names(Scroogefactor(citations, sort = TRUE)))

For comparison, here are the results of analysis of the same data using the BradleyTerry2 package and the Bradley--Terry model:

head(names(BTscores(citations)))
cor(BTscores(citations), ILSR(citations))


Selbosh/scrooge documentation built on May 5, 2019, 8 p.m.