table2docx: Export data.frame or statistical output to Microsoft Word...

View source: R/table2office.R

table2docxR Documentation

Export data.frame or statistical output to Microsoft Word format

Description

Export data.frame or statistical output to Microsoft Word format

Usage

table2docx(...)

Arguments

...

further arguments to be passed to table2office

Examples

## Not run: 
require(moonBook)
x=mytable(Dx~.,data=acs)
table2docx(x)
table2docx(head(iris),title="head(iris)",append=TRUE,vanilla=FALSE)
fit=lm(mpg~wt*hp,data=mtcars)
table2docx(fit,title="Linear regression",append=TRUE,vanilla=TRUE)
fit2=aov(yield ~ block + N * P + K, data = npk)
table2docx(fit2,title="Linear regression",append=TRUE,vanilla=TRUE)

## End(Not run)

rrtable documentation built on April 5, 2022, 9:08 a.m.