Displaying 5 results from an estimated 5 matches for "sidewayst".
Did you mean:
sideways
2012 Feb 01
2
Problem with xtable- rescaling a table
...table that is very long. in the landscape format, but
I would need to rescale the table so that it fits in the page. xtable
enables me to have the landscape format, but I cannot rescale it, and there
seems to be a problem, if I use scalebox in Latex on my output produced
with stable and the option sidewaystable. Do you know any way to achieve
this result with xtable or another R package?
Let's look at the following example:
In R, I use the following code
##############
outfile<- matrix(nrow=3, ncol=3)
outfile[2,1]<- 6.912
outfile[3,1]<- 400
outfile[2,2]<- 8.9722
outfile[2,2]<- 500...
2016 Sep 08
3
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...(1:10),rep(1,14)]
knitr::kable(la.tabla.ancha, caption = "La tablaza")
```
```{r results='asis'}
options(xtable.comment = FALSE)
print(
xtable::xtable(
la.tabla.ancha, caption = "La-tablota",
floating = TRUE,
floating.environment = "sidewaystable",
type = "html"
))
```
Y así se ve que las tablas no entran :__(
Muchas gracias
2016 Sep 09
2
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...es/xtableGallery.pdf
(pag. 25)
As qued el chunk
|```{r results='asis'}||
library(xtable)
||x <- xtable(||
|| la.tabla.ancha, caption = "La tablota (2)"||
|| )||
||options(xtable.comment = FALSE)||
||print(x, floating = TRUE,||
|| floating.environment = "sidewaystable"||
|| )||
||```|
Pero atento! Que esta otra forma no funciona:
|
||```{r results='asis'}||
||options(xtable.comment = FALSE)||
||print(||
|| xtable::xtable(||
|| la.tabla.ancha, caption = "La tablota (1)",||
|| floating = TRUE,||
|| floating.en...
2009 Aug 07
0
RE xtable, sweave and resizebox
...',caption='Example of longtable spanning
several pages')
print(x.big,tabular.environment='longtable',floating=FALSE)
x <- x[1:30,]
x.small <- xtable(x,label='tabsmall',caption='regular table env')
print(x.small) # default, no longtable
## Demonstration of sidewaystable support.
## Remember to insert \usepackage{rotating} on your LaTeX preamble
print(x.small,floating.environment='sidewaystable')
if(require(stats,quietly=TRUE)) {
.../...
HTH
Denis Teysseyre
2006 Nov 02
1
rotated figures within Sweave?
I can't recall (or find an example of) how to rotate figures in Sweave:
<<fig=TRUE, echo=false, width=9, landscape=TRUE>>= ???
<<fig=TRUE, echo=false, width=9, rotate=true>>= ???
<<fig=TRUE, echo=false, width=9, sideways=TRUE>>= ???
<<fig=TRUE, echo=false, width=9, par=(something)>>= ???
Does anyone know how to do this?