search for: tablota

Displaying 2 results from an estimated 2 matches for "tablota".

2016 Sep 09
2
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...lo que le faltaba al documento que haba presentado antes para poder funcionar. https://cran.r-project.org/web/packages/xtable/vignettes/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(|| ||...
2016 Sep 08
3
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...SE} knitr::opts_chunk$set(echo = TRUE) ``` ```{r} la.tabla.ancha <- cars[c(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