Let me create some data before I ask my question.
my.data <- data.frame(A = sample(seq(1,100,by=5),10,replace=TRUE),W = rnorm(10),X =sample(1:10),Y = sample(
You can use the package xtable:
library(xtable) mytable=ftable(mydata) print( xtable(format(mytable)),file="~/Desktop/mytable.tex" )
I don't know how it compares to the other options given.