-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path0. Pre-Workshop Setup.Rmd
More file actions
51 lines (27 loc) · 1.09 KB
/
0. Pre-Workshop Setup.Rmd
File metadata and controls
51 lines (27 loc) · 1.09 KB
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
---
title: "0. Pre-Workshop Setup"
author: "Michael Weisner"
date: "February 14, 2019"
output:
word_document: default
pdf_document: default
html_document: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
[Example Git Update]
1. [Install R](https://cran.r-project.org/)
2. [Download R Studio](https://www.rstudio.com/products/rstudio/download/)
3. [Use R Cheatsheets](https://www.rstudio.com/resources/cheatsheets/)
4. Download Federalist Dataset to your working directory here: [goo.gl/y5v6bx](goo.gl/y5v6bx)
5. Install Appropriate Packages with the following command:
```{r package installation1, eval=FALSE}
install.packages(c("tidyr", "tidyverse", "dplyr", "ggraph", "tidytext", "gutenbergr", "janeaustenr", "tm", "wordcloud", "topicmodels", "text2vec", "ggplot2", "igraph", "quanteda", "rmarkdown", "rtweet", "stringr", "Matrix", "ggthemes"))
```
You may also need devtools to install from github, with packages like widyr.
```{r package installation2, eval=FALSE}
install.packages("devtools")
library(devtools)
devtools::install_github("dgrtwo/widyr")
```