totable {eoffice} | R Documentation |
write table out to pptx or docx
totable(data, filename, format = NULL, append = FALSE)
data |
datasets |
filename |
output filename |
format |
pptx or docx |
append |
append into file |
Kai Guo
tt <- t.test(wt ~ am, mtcars)
totable(tt, filename = file.path(tempdir(), "mtcars.pptx"))
totable(t.test(wt ~ am, mtcars), filename = file.path(tempdir(), "mtcars.pptx"))
totable(head(mtcars), filename = file.path(tempdir(), "mtcars.docx"))