Downloads

Neuroconductor package downloads (full list).

Attributes
Name Type Description
name String Name of the package.
version String Version of the package.
country String Country from where the download was initiated.
os_type String Type of package downloaded (osx/win/src).
timestamp String Download timestamp.
Actions
Find

This returns the list of Neuroconductor package downloads.

Examples
  • GET /downloads

  • Using the neurocStats package to retrieve download statistics
    > neuroc_downloads <- get_download_stats()
    > head(neuroc_downloads)
        package downloads
    1       aal        51
    2     afnir       193
    3     ANTsR       233
    4 ANTsRCore       228
    5   bftools        45
    6 brainKCCA        98

    > Rxnat_downloads <- get_download_stats('Rxnat', verbose = TRUE)
    > head(Rxnat_downloads)
       name package_version country os_type r_version           timestamp
    1 Rxnat      0.0.0.9005      FR     src           2019-03-22 10:23:38
    2 Rxnat      0.0.0.9005      FR     osx       3.5 2019-04-08 01:25:18
    3 Rxnat      0.0.0.9005      FI     src           2019-04-26 07:41:12
    4 Rxnat      0.0.0.9005      US     win       3.5 2019-04-26 13:36:29
    5 Rxnat      0.0.0.9005      DE     osx       3.5 2019-04-26 17:32:54
    6 Rxnat      0.0.0.9005      FR     osx       3.5 2019-06-02 00:13:34


  • Use httr package
    > GET('https://neuroconductor.org/api/downloads')
    Response [https://neuroconductor.org/api/downloads]
      Date: 2019-09-11 18:39
      Status: 200
      Content-Type: application/json
      Size: 3 MB
    [
        {
            "name": "ggseg",
            "package_version": 1.2,
            "country": "US",
            "os_type": "osx",
            "r_version": "",
            "timestamp": "2017-12-05 18:52:57"
        },
        {
    ...