Displaying 1 result from an estimated 1 matches for "thetx".
Did you mean:
theta
2004 Aug 27
3
gsub, backslash and xtable
...that R is in control of me
rather than vise versa.
Secondly, as I am building up a character vector of sentences, tables
and figures, I wanted to convert my xtable output to a character vector
with newline
separators. I have only able to accomplish this by printing to a
temporary file thus,
theTx <- "\\documentclass[A4paper,10pt]{article}"
.
.
theTx <- paste(theTx, paste_xtable(temp2,"Percentiles for scores"), sep
= "")
.
theTx <- paste(theTx,"\n" ,"\\end{document}","\n", sep = "")
.
cat(theTx) #into a file for...