Last active
November 17, 2018 07:40
-
-
Save patperu/2d3bfc17047693b200a00a8b32b18e5f to your computer and use it in GitHub Desktop.
Packages
This file contains 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
#http://www.r-ohjelmointi.org/?p=344 | |
#--aja vanhassa veriossa | |
setwd("E:/") | |
packages <- installed.packages()[,"Package"] | |
save(packages, file="Rpackages.rds") | |
#--aja uudessa versiossa | |
setwd("E:/") | |
load("Rpackages.rds") | |
for (p in setdiff(packages, installed.packages()[,"Package"])) | |
install.packages(p) | |
devtools::install_github("rudeboybert/fivethirtyeight") | |
# skimr | |
devtools::install_github("hadley/colformat") | |
devtools::install_github("ropenscilabs/skimr") | |
devtools::install_github("ropenscilabs/codefinch") | |
devtools::install_github('hughjonesd/huxtable') | |
devtools::install_github("r-spatial/sf") | |
devtools::install_github('rstudio/blogdown') | |
devtools::install_github("awalker89/openxlsx") | |
devtools::install_github("sjmgarnier/viridis") | |
devtools::install_github("sjmgarnier/viridisLite") | |
devtools::install_github("ropensci/rseaaroundus") | |
devtools::install_github("hrbrmstr/vegalite") | |
devtools::install_github("hrbrmstr/overpass") | |
devtools::install_github("ropensci/sofa") | |
devtools::install_github("ropensci/plotly") | |
devtools::install_github("ropensci/geojsonio") | |
devtools::install_github("jbkunst/highcharter") | |
devtools::install_github("rstudio/leaflet") | |
devtools::install_github('bhaskarvk/leaflet.extras') | |
devtools::install_github("rstudio/rmarkdown") | |
devtools::install_github("sckott/analogsea") | |
devtools::install_github("hrbrmstr/hrbrmisc") | |
devtools::install_github("hadley/readr") | |
devtools::install_github("mtennekes/tabplot") | |
#devtools::install_github('ropenscilabs/gtfsr', build_vignettes = TRUE) | |
devtools::install_github('ropenscilabs/gtfsr') | |
devtools::install_github("hadley/bigvis") | |
devtools::install_github(c("ramnathv/htmlwidgets", "rstudio/dygraphs")) | |
devtools::install_github('hrbrmstr/hrbrmisc') | |
devtools::install_github("r-pkgs/gh") | |
devtools::install_github("hansthompson/gtfsnetwork") | |
devtools::install_github("cloudyr/aws.signature") | |
devtools::install_github("cloudyr/aws.s3") | |
remotes::install_github('hughjonesd/huxtable') | |
remotes::install_github("sjmgarnier/viridis") | |
remotes::install_github("sjmgarnier/viridisLite") | |
remotes::install_github("ropensci/rseaaroundus") | |
remotes::install_github("hrbrmstr/vegalite") | |
remotes::install_github("hrbrmstr/overpass") | |
remotes::install_github("jbkunst/highcharter") | |
remotes::install_github("rstudio/rmarkdown") | |
remotes::install_github("hrbrmstr/hrbrmisc") | |
#remotes::install_github("mtennekes/tabplot") | |
#remotes::install_github('ropenscilabs/gtfsr', build_vignettes = TRUE) | |
remotes::install_github('ropenscilabs/gtfsr') | |
remotes::install_github("hadley/bigvis") | |
remotes::install_github('hrbrmstr/hrbrmisc') | |
remotes::install_github("hansthompson/gtfsnetwork") | |
remotes::install_github("cloudyr/aws.signature") | |
remotes::install_github("cloudyr/aws.s3") | |
remotes::install_github("r-pkgs/gh") | |
remotes::install_github("hadley/readr") | |
remotes::install_github("ropensci/sofa") | |
remotes::install_github("ropensci/plotly") | |
remotes::install_github("ropensci/geojsonio") | |
remotes::install_github("rstudio/leaflet") | |
remotes::install_github('bhaskarvk/leaflet.extras') | |
remotes::install_github(c("ramnathv/htmlwidgets", "rstudio/dygraphs")) | |
remotes::install_github("r-spatial/sf") | |
remotes::install_github('rstudio/blogdown') | |
remotes::install_github("sckott/analogsea") | |
remotes::install_github("cboettig/rdftools") | |
remotes::install_github("cboettig/virtuoso") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment