I have a very basic question however I'm stumped.
I am creating a LaTex table in R and I am having trouble with actually outputting the real table.
Here is example code borrowed from: http://cran.r-project.org/web/packages/xtable/vignettes/xtableGallery.pdf
data(tli)
tli.table <- xtable(tli[1:10,])
print(tli.table,floating=FALSE)
This code just gives me the raw table output:
% latex table generated in R 3.0.3 by xtable 1.7-3 package
% Tue Jul 15 13:23:25 2014
\begin{table}[ht]
\centering
\begin{tabular}{rrlllr}, etc. etc. etc.
How in the world do I actually see the real table that is shown in the above referenced table. The code in that source seems like the above 3 lines produce the table but, for me, it's just producing the raw version.
Forgive the simplicity of this question but I am stumped.