Skip to content

Custom R package with tools for David Selby's doctoral research

Notifications You must be signed in to change notification settings

Selbosh/scrooge

Folders and files

NameName
Last commit message
Last commit date
Feb 14, 2018
Sep 13, 2016
Sep 30, 2017
Aug 15, 2017
Aug 15, 2017
Oct 1, 2017
Oct 1, 2017
Jun 1, 2017
May 30, 2017
Feb 14, 2018
Aug 10, 2017
Sep 30, 2017
Sep 30, 2017
Jun 3, 2017

Repository files navigation

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)
#>      articles
#> AmS        49
#> AISM       52
#> AoS       101
#> ANZS       27
#> Bern       60
#> BioJ       53

Journal ranking metrics

head(names(ILSR(citations, sort = TRUE)))
#> [1] "JRSS-B" "AoS"    "Bka"    "JASA"   "Bcs"    "JRSS-A"
head(names(PageRank(citations, sort = TRUE)))
#> [1] "JASA"   "AoS"    "JRSS-B" "StMed"  "Bcs"    "Bka"
head(names(Scroogefactor(citations, sort = TRUE)))
#> [1] "JRSS-B" "AoS"    "Bka"    "JASA"   "JRSS-A" "Bcs"

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)))
#> [1] "AmS"  "AISM" "AoS"  "ANZS" "Bern" "BioJ"
cor(BTscores(citations), ILSR(citations))
#> [1] 1

About

Custom R package with tools for David Selby's doctoral research

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages