On 02/24/2015 05:16 AM, AURORA GONZALEZ VIDAL wrote:
I have a problem with the caption option on the xtable function.
Using Rmarkdown, knitr generates correctly a pdf when I write something
like this:
```{r xtable, results="asis"}
library( xtable )
variableName <- c( "V03_1" )
age <- c( rep(1,10),rep(2,10),rep(3,10) )
gender <- c( rep("m",15), rep("f",15) )
df <- data.frame( age, gender )
t <- xtable( df, caption = "hello" )
print( t, caption.placement = 'top',comment = FALSE )
```
But if I change to
t <- xtable(df, caption = variableName)
wich is what I really want it retuns a pandoc error
Hello:
It is, indeed, the underscore in the variable name. You should define it as:
variableName <- c("V03\\_1")
And now:
t <- xtable(df, caption = variableName)
print(t, caption.placement = 'top',comment = FALSE)
Will work.
--
Ulises M. Alvarez
http://sophie.unam.mx/
______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.