-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathREADME.Rmd
28 lines (17 loc) · 946 Bytes
/
README.Rmd
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
---
output: github_document
---
# The Redacted Mueller Report
<!-- badges: start -->
<!-- badges: end -->
A (very unclean) text extraction of the [Redacted Mueller Report](https://www.documentcloud.org/documents/5955210-Redacted-Mueller-Report.html).
The text [was extracted](process_report.R) using [pdftools](https://github.com/ropensci/pdftools) from [ROpenSci](https://ropensci.org).
The only cleaning of the data I've done was to replace references to `Corney` with `Comey`.
```{r, message=FALSE, warning=FALSE}
library(tidyverse)
mueller_report <- read_csv("mueller_report.csv")
mueller_report %>%
filter(page == 195, between(line, 5, 18))
```
The redacted report, not included here, is available at: <https://www.documentcloud.org/documents/5955210-Redacted-Mueller-Report.html>.
[Factbase](https://factba.se) has published a human-reviewed text version of the report at [https:// f2.link/mr-sheet](https://f2.link/mr-sheet).