Convert Word Content To Excel In R

[Solved] Convert Word Content To Excel In R | Vb - Code Explorer | yomemimo.com
Question : convert word content to excel in R

Answered by : mathiasf

## Read in Word data (.docx)
readtext(paste0(DATA_DIR, "/word/*.docx"))
## readtext object consisting of 2 documents and 0 docvars.
## # Description: df[,2] [2 × 2]
## doc_id text
## <chr> <chr>
## 1 UK_2015_EccentricParty.docx "\"The Eccent\"..."
## 2 UK_2015_LoonyParty.docx "\"The Offici\"..."

Source : https://cran.r-project.org/web/packages/readtext/vignettes/readtext_vignette.html | Last Update : Sun, 28 Jun 20

Question : convert word content to excel in R

Answered by : mathiasf

# Load readtext package
library(readtext)

Source : https://cran.r-project.org/web/packages/readtext/vignettes/readtext_vignette.html | Last Update : Sun, 28 Jun 20

Answers related to convert word content to excel in r

Code Explorer Popular Question For Vb