if (FALSE) {
# 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")
}
Run the code above in your browser using DataLab