bioconductorDownloads {packageRank} | R Documentation |
Annual/monthly package downloads from Bioconductor.
Description
Annual/monthly package downloads from Bioconductor.
Usage
bioconductorDownloads(packages = NULL, from = NULL, to = NULL,
when = NULL, unit.observation = "month")
Arguments
packages |
Character. Vector of package names. |
from |
Start date as |
to |
End date as |
when |
|
unit.observation |
"year" or "month". |
Examples
## Not run:
# all packages
bioconductorDownloads()
# entire history
bioconductorDownloads(packages = "clusterProfiler")
# year-to-date
bioconductorDownloads(packages = "clusterProfiler", when = "ytd")
bioconductorDownloads(packages = "clusterProfiler", when = "year-to-date")
# last 12 months
bioconductorDownloads(packages = "clusterProfiler", when = "last-year")
# from 2015 to current year
bioconductorDownloads(packages = "clusterProfiler", from = 2015)
# 2010 through 2015 (yearly)
bioconductorDownloads(packages = "clusterProfiler", from = 2010, to = 2015,
unit.observation = "year")
# selected year (yearly)
bioconductorDownloads(packages = "clusterProfiler", from = 2015, to = 2015)
# selected year (monthly)
bioconductorDownloads(packages = "clusterProfiler", from = "2015-01", to = "2015-12")
# June 2014 through March 2015
bioconductorDownloads(packages = "clusterProfiler", from = "2014-06", to = "2015-03")
## End(Not run)
[Package packageRank version 0.9.1 Index]