table2pptx {rrtable} | R Documentation |
Export data.frame or statistical output to Microsoft Powerpoint format
Description
Export data.frame or statistical output to Microsoft Powerpoint format
Usage
table2pptx(...)
Arguments
... |
further arguments to be passed to table2office |
Examples
## Not run:
require(moonBook)
x="mytable(Dx~.,data=acs)"
table2pptx(x,title="mytable object",echo=TRUE)
table2pptx("head(iris)",title="data.Frame",append=TRUE,vanilla=FALSE,echo=TRUE)
x="fit<-lm(mpg~wt*hp,data=mtcars);fit"
table2pptx(x,title="Linear regression",append=TRUE,vanilla=TRUE,echo=TRUE)
fit2="aov(yield ~ block + N * P + K, data = npk)"
table2pptx(fit2,title="ANOVA",append=TRUE,vanilla=TRUE,echo=TRUE)
## End(Not run)
[Package rrtable version 0.3.0 Index]