0

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.

hrbrmstr
  • 77,368
  • 11
  • 139
  • 205

1 Answers1

1

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.

cderv
  • 6,272
  • 1
  • 21
  • 31