Description Usage Arguments Value Examples
Read in the content from a .pptx file.
1 2 3 4 5 6 7 8 |
file |
The path to the .pptx file. |
skip |
The number of lines to skip. |
remove.empty |
logical. If |
trim |
logical. If |
include.notes |
logical. If |
... |
ignored. |
Returns a base::data.frame()
with the slide number
(slide_id
), line number (element_id
), and the text
.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
url <- file.path("https://www.oclc.org/content/dam/research/presentations",
"2019/111319-godby-NISO-What-Are-Entities-Matter.pptx")
file <- download(url)
(txt <- read_pptx(file))
pptx_doc <- system.file('docs/Hello_World.pptx', package = "textreadr")
read_pptx(pptx_doc)
read_pptx(pptx_doc, include.notes = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.