Last active
January 29, 2018 08:30
-
-
Save berkorbay/2cc4e6deb191ff45ffe93d8188d6344a to your computer and use it in GitHub Desktop.
Akademik Bilişim 2018 için gerekli paketler
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
#Customer Survey Data | |
survey_data <- data.frame( | |
customer = 1:16, | |
OS = c(0,0,0,0,1,0,0,0,1,1,0,1,1,1,1,1), | |
Price = c(6,7,6,5,7,6,5,6,3,1,2,5,2,3,1,2), | |
Software = c(5,3,4,7,7,4,7,5,5,3,6,7,4,5,6,3), | |
Aesthetics = c(3,2,4,1,5,2,2,4,6,7,6,7,5,6,5,7), | |
Brand = c(4,2,5,3,5,3,1,4,7,5,7,6,6,5,5,7) | |
) | |
#Gerekli paketler | |
#Asagidaki komutu kopyala yapistir ile R'da calistirabilirsiniz. Sistem gerekli paketleri yukleyecektir. | |
install.packages(c("tidyverse","rmarkdown","lubridate","stringr"),repos="https://cran.r-project.org") | |
#Kontrol | |
#Paketleri yukledikten sonra library ile cagirarak duzgun yuklenip yuklenmedigini kontrol edin | |
library(tidyverse) | |
library(rmarkdown) | |
library(lubridate) | |
library(stringr) | |
#Onerilen paketler | |
#Asagidaki komutu kopyala yapistir ile R'da calistirabilirsiniz. Sistem gerekli paketleri yukleyecektir. | |
install.packages(c("data.table","party","readxl","writexl","openxlsx","shiny","ggplot2movies"),repos="https://cran.r-project.org") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment