Created
January 22, 2016 14:46
-
-
Save stephlocke/8eba4cefa4e14ebbf6fd to your computer and use it in GitHub Desktop.
Based on cranlogs, R operating system market share of downloads last month
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| link<-"http://cranlogs.r-pkg.org/downloads/daily/last-month/R" | |
| library(httr) | |
| library(data.table) | |
| raw<-GET(link) | |
| rhs<-content(raw,simplify=TRUE)$downloads[[1]] | |
| setDT(rhs) | |
| rhs[,sum(downloads)/rhs[,sum(downloads)],os] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment