Skip to content

Instantly share code, notes, and snippets.

@berkorbay
Created February 8, 2019 07:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkorbay/ec034339f9a21ec5c03091a12b62962b to your computer and use it in GitHub Desktop.
Save berkorbay/ec034339f9a21ec5c03091a12b62962b to your computer and use it in GitHub Desktop.
R'a başlangıç için kurulması gereken paketler / R starter packages
## Önce aşağıdakiler linklerinden programlar indirilerek kurulmalı
# R https://cran.r-project.org/
# RStudio Desktop https://www.rstudio.com/products/rstudio/download/
# Pandoc https://pandoc.org/installing.html
# LaTeX https://www.latex-project.org/get/
# Kurulması gereken paket listesi
# Bütün kodu kopyala yapıştır ile R'a koyun Hata alınan paketler olursa bazı başka kütüphanelerin yüklenmesi gerekebilir (ör. openssl)
pti <- c("devtools","tidyverse","shiny","shinydashboard","readxl","writexl","lubridate","reticulate","stringr","openxlsx","ggiraph","rhandsontable","shinycssloaders","rmarkdown","DBI","RMySQL","shinyjs","promises","future","ggmap","rlist","anytime","xml2","jsonlite","data.table")
pti<-pti[!(pti %in% installed.packages())]
if(length(pti)>0)
install.packages(pti,repos="https://cran.r-project.org")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment