Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check how many downloads a CRAN package has? [closed]

Tags:

r

cran

How can I get simple download metrics for an R package on CRAN?

I recently released my own package on CRAN and I want to monitor it a bit.

like image 924
Ben Avatar asked Nov 27 '16 23:11

Ben


3 Answers

http://cranlogs.r-pkg.org offers a variety of ways to access counts of the number of times a package has been downloaded (not installed) from the RStudio CRAN mirror (only), including an API for generating badges automatically and an R package.

For the mltools package:

Downloads (https://cranlogs.r-pkg.org/badges/mltools)

Downloads in last day (https://cranlogs.r-pkg.org/badges/last-day/mltools)

Grand total (https://cranlogs.r-pkg.org/badges/grand-total/mltools)

like image 125
Ben Bolker Avatar answered Nov 09 '22 14:11

Ben Bolker


To get metrics of the number of package downloads (not installations) you could also use the following packages:

  • dlstats
  • cranlogs and
  • adjustedcranlogs
like image 11
petzi Avatar answered Nov 09 '22 16:11

petzi


You can check the number of downloads a CRAN package has here:

http://www.datasciencemeta.com/rpackages


enter image description here

like image 2
stevec Avatar answered Nov 09 '22 16:11

stevec