Displaying 3 results from an estimated 3 matches for "addtable".
Did you mean:
ddtable
2012 Oct 11
2
struggling with R2wd or SWord? Try rtf!
...4), collapse=" "))
addNewLine(rtf)
decreaseIndent(rtf)
addParagraph(rtf, paste(rep("And remove the indent with the
decreaseIndent() function.", 4), collapse=" "))
addNewLine(rtf)
addNewLine(rtf)
addParagraph(rtf, "Table 1. Table of the iris data using the addTable()
function.\n")
tab <- table(iris$Species, floor(iris$Sepal.Length))
names(dimnames(tab)) <- c("Species", "Sepal Length")
addTable(rtf, tab, font.size=10, row.names=TRUE, NA.string="-",
col.widths=c(1, 0.5, 0.5, 0.5, 0.5) )
newPlot <- function() {...
2010 Oct 01
0
Populating values in a PowerPoint table
...quot;), "Title"), "TextFrame"), "TextRange")
comSetProperty(slideTitleHanlde, "Text", "Table Slide Title")
# Add table to current slide
myShapes <- comGetProperty(myPres$Current.Slide, "Shapes")
myTable1 <- comInvoke(myShapes, "AddTable",7,3)
--
Saar Golde, Ph.D. <saar at revolutionanalytics.com>
Analytics Solutions Architect, Revolution Analytics
101 University Ave, Suite 300, Palo Alto, CA 94306, USA
Tel: +1 (650) 330-0553 x207
2012 Sep 20
3
(no subject)
>From my book on corpus linguistics with R:
# (10) Imagine you have two vectors a and b such that
a<-c("d", "d", "j", "f", "e", "g", "f", "f", "i", "g")
b<-c("a", "g", "d", "f", "g", "a", "f", "a",