Displaying 1 result from an estimated 1 matches for "paste_xtable".
2004 Aug 27
3
gsub, backslash and xtable
...cter 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 Latex
############## with my past_xtable function being ##########
paste_xtable <- function(a_t...