The xtable tag has no wiki summary.
6
votes
1answer
985 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>>=
...
5
votes
2answers
479 views
Vertical aligning text and vertical height of rows in longtable environment
I have now been working on fixing this problem for some time and I have read through some forums on the Internet and tried different things, but I can't solve this problem.
I am looking to have some ...
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 ...
3
votes
1answer
771 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, ...
3
votes
1answer
497 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 ...
2
votes
2answers
1k views
Dealing with a wide table that exceeds the document margins
I am looking for "global" and "local" solutions to the case where I have a table that goes "much" beyond the right and left margins of the page (meaning: cases where having no margins to the page ...
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
1
vote
1answer
131 views
Naming row and column in table
I want to create the table like this (with row and column each names individually and also in a group):
I can create the table, but I do not know how to write those column and row names. How can I ...
1
vote
1answer
119 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 ...
0
votes
0answers
64 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 = ...
