tags:

views:

65

answers:

2

Is there a way to easily export R tables to a simple HTML page?

+5  A: 

The xtable function in the xtable package can export R tables to HTML tables. This blog entry describes how you can create HTML pages from Sweave documents.

nullglob
`print(xtable(tb), type = "html")`, to be precise. Thanks for the link!
aL3xa
+3  A: 

Apart from xtable mentioned by nullglob there are three more packages that might come handy here:

radek