Tagged Questions
0
votes
0answers
63 views
does not produce output table in pdf using Sweave and xtable [closed]
If I try to get 3 tables I only get the first two. I'm running out of ideas here:
<<test.2m,echo=false,results=tex>>=
library(xtable)
a = ...
2
votes
0answers
62 views
Long and rescaled xtable
Is there a way to use scalebox along with tabular.environment='longtable' when printing a long and wide xtable?
When I give both of them I get an error:
Running xelatex.exe on my_file.tex...failed
3
votes
1answer
768 views
How to print a LaTeX matrix using xtable in R
I'm trying to get R to print a matrix as a LaTeX matrix using xtable, using the LaTeX environment bmatrix.
a <- matrix(rnorm(25), 5 ,5)
x <- xtable(x)
> print(x, floating=FALSE, ...
1
vote
1answer
118 views
Explain Soutput Schunk -block when switched from article to scrreprt
When I zwitched from article to \documentclass[fontsize=2pt]{scrreprt}, I am getting around the xtable -things:
\begin{Schunk}
\begin{Soutput}
...
\end{Schunk}
\end{Soutput}
Trial (code here)
$ R ...
3
votes
1answer
495 views
Using tabularx package with xtable package in R
I am trying to solve the problem of having a latex table (produced using the xtable from R, then combined into a tex file using Sweave), exceeding the margins of my LaTeX document.
I found that one ...
3
votes
3answers
471 views
Table Limit: Sweave
I'm running into an issue. It seems that when I try to output more than 17 or 18 tables to a pdf document the remaining tables are ignored. When I split them across multiple Rnw files, there is no ...
6
votes
1answer
983 views
side-by-side xtables in Sweave
I use xtable to manage my tables in Sweave like this
<<label=tab1, echo = FALSE, results = tex>>=
print(xtable(Table1))
@
<<label=tab2, echo = FALSE, results = tex>>=
...
