Introduction
This R
package queries download stats of R
packages.
For CRAN packages, it queries from RStudio download logs.
For Bioconductor packages, it queries from Bioconductor download stats.
Download stats of CRAN packages
library("ggplot2")
library("dlstats")
x <- cran_stats(c("emojifont", "ggimage", "hexSticker", "rvcheck"))
if (!is.null(x)) {
print(head(x))
ggplot(x, aes(end, downloads, group=package, color=package)) +
geom_line() +
geom_point() +
scale_y_log10()
}
## start end downloads package
## 1 2018-01-01 2018-01-31 569 emojifont
## 5 2018-02-01 2018-02-28 395 emojifont
## 9 2018-03-01 2018-03-31 434 emojifont
## 13 2018-04-01 2018-04-30 580 emojifont
## 17 2018-05-01 2018-05-31 519 emojifont
## 21 2018-06-01 2018-06-30 2642 emojifont
Download stats of Bioconductor packages
pkgs <- c("ChIPseeker", "clusterProfiler", "DOSE", "ggtree", "GOSemSim", "ReactomePA")
y <- bioc_stats(pkgs)
if (!is.null(y)) {
head(y)
ggplot(y, aes(end, Nb_of_downloads, group=package, color=package)) +
geom_line() + geom_point(aes(shape=package))
library("tidyr")
yy <- gather(y, type, Nb, Nb_of_distinct_IPs:Nb_of_downloads)
ggplot(yy, aes(end, Nb, shape=package, color=package)) +geom_point() + geom_line() +
ylab(NULL) + xlab(NULL) + facet_grid(type~., scales="free_y") +
ggtitle("Number of downloads per Month") +
scale_x_date(date_breaks="1 year", date_labels = "%Y")
}