table2docx {rrtable}R 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)

[Package rrtable version 0.3.0 Index]