-
Notifications
You must be signed in to change notification settings - Fork 2
/
packages.r
36 lines (35 loc) · 1.68 KB
/
packages.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# install packages from CRAN
p_needed <- c("readr", # imports spreadsheet data
"haven", # imports SPSS, Stata and SAS files
"magrittr", # for piping
"plyr", # for consistent split-apply-combines
"dplyr", # provides data manipulating functions
"devtools", # provides developer tools
"stringr", # for string processing
"lubridate", # dates and times
"ggplot2", # for graphics
"tidyr", # for tidying data frames
"broom", # for tidying model output
"janitor", # for basic data tidying and examinations
"reshape2", # reshape data
"xtable", # generate table output
"stargazer", # generate nice model table
"rvest", # scraping suite
"lme4", # linear mixed effects models
"RCurl", # HTTP communication suite
"XML", # XML parsing
"zoo", # dealing with time series data
"ROAuth", # performing OAuth authentication
"httpuv", # HTTP and WebSocket server
"rtweet", # R wrapper for Twitter's REST and Streaming APIs
"streamR", # R wrapper for Twitter's Streaming APIs
"pageviews", # R wrapper for Wikipedia's pageviews API
"statsgrokse", # R wrapper for pageviews data from statsgrok.se
"odds.converter" # functions to convert different flavors of odds
)
packages <- rownames(installed.packages())
p_to_install <- p_needed[!(p_needed %in% packages)]
if (length(p_to_install) > 0) {
install.packages(p_to_install)
}
lapply(p_needed, require, character.only = TRUE)