├── .gitignore ├── README.md ├── cran-downloads.Rproj ├── rsconnect └── shinyapps.io │ └── hadley │ └── .gitignore ├── server.R └── ui.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/cran-downloads/HEAD/README.md -------------------------------------------------------------------------------- /cran-downloads.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/cran-downloads/HEAD/cran-downloads.Rproj -------------------------------------------------------------------------------- /rsconnect/shinyapps.io/hadley/.gitignore: -------------------------------------------------------------------------------- 1 | cran-downloads.dcf 2 | -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/cran-downloads/HEAD/server.R -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/cran-downloads/HEAD/ui.R --------------------------------------------------------------------------------