Boa Tarde Pessoal
Estou testando o pacote "xtable, e o meu ambiente é ubuntu 14.04, RStudio 0.99.896, porém estou tendo o seguinte problema:
Quando executo o código abaixo:
# Load library
library(xtable)
## Load example dataset
data(tli)
## Demonstrate data.frame
tli.table <- xtable(tli[1:20, ])
xtable(mtcars)
O meu resultado não é uma tabela apresentável:
% latex table generated in R 3.3.0 by xtable 1.8-2 package
% Sun May 8 12:53:18 2016
\begin{table}[ht]
\centering
\begin{tabular}{rrrrrrrrrrrr}
\hline
& mpg & cyl & disp & hp & drat & wt & qsec & vs & am & gear & carb \\
\hline
Mazda RX4 & 21.00 & 6.00 & 160.00 & 110.00 & 3.90 & 2.62 & 16.46 & 0.00 & 1.00 & 4.00 & 4.00 \\
Já busquei algumas soluções no google mas nada muito explicativo.
Alguém pode me ajudar a solucionar o problema ?
--