Yousri Hajri
Yousri Hajri

Reputation: 1

R / officer package / docx_summary function doesn't exist

I am on R version 3.3.3 using package officer 0.1.1

library(officer)

docx_summary("doc.docx")

Gives this error:

Error: could not find function "docx_summary"

I tried: officer:: and officer::: but it seems that it is the only missing function.

I tried reinstalling officer but the function is always missing.

Upvotes: 0

Views: 810

Answers (1)

cderv
cderv

Reputation: 6542

docx_summary function appears in officer 0.1.2 see news file.

if you install from cran install.packages("officer"), you will get version 0.1.8. docx_summary is in this version.

Upvotes: 1

Related Questions