Suggestion for R/LaTeX table creation package

I've been using xtable package for a long time, and looking forward to writting my first package in R... so I reckon that if I have some "cool" idea that's worth carying out, there's a great chance that somebody got there before me... =)

I'm interested in functions/packages specialized for LaTeX table creation (through R, of course). I bumped on quantreg package which has latex.table function. Any suggestion for similar function(s)/package(s)?

PS I'm thinking about building a webapp in which users can define their own presets/templates of tables, choose style, statistics, etc. It's an early thought, though... =)


I sometimes divide the task of creating LaTeX tables into two parts:

  • I'll write the table environment, caption, and tabular environment commands directly in my LaTeX document.
  • I'll export just the body of the table from R using a custom function.
  • The R export part involves several steps: Starting with a matrix of the whole table including any headings:

  • Add any LaTeX specific formatting to the table. Eg, enclose digits in dollar symbols to ensure that negative numbers display correctly.
  • Collapse rows into a single character value by replacing separate columns with the ampersand (&) and adding ends-of-row symbols ""
  • Add any horizontal lines to be displayed in the table. I use the booktabs LaTeX package.
  • Export the resulting character vector using the write function
  • The exported text file is then imported using the input command in LaTeX. I ensure that the file name corresponds to the table label.

    I have used this approach in the context of writing journal articles. In these cases, there are a lot of different types of tables (eg, multi-page tables, landscape tables, tables requiring extended margins, tables requiring particular alignment, tables where I want to change the wording of the table title). In this setting, I've mostly found it easier to just export the data from R. In this way, the result is reproducible research, but it is easier to tweak aspects of table design in the LaTeX document. And in the context of journal articles, there are usually not too many tables and rather specific formatting requirements.

    However, I imagine if I were producing large numbers of batch reports, I'd consider exporting more aspects directly from R.


    Beyond xtable and Hmisc as listed by Rob, there are also at least

  • apsrtable which formats latex tables from one or more model objects
  • p2lh which exports R to LaTeX and HTML
  • RcmdrPlugin.Export which graphically exports output to LaTeX or HTML
  • reporttools which generates LaTeX tables of descriptive statistics
  • This was just based on a quick search. So there may be more for you to look at before you try to hook it into a webapp. Good luck.


    In addition to the packages mentioned above, there is the stargazer package. It works well with objects from many commonly used functions and packages (lm, glm, svyglm, plm, survival, AER, pscl, and others), as well as with zelig objects.

    链接地址: http://www.djcxy.com/p/24982.html

    上一篇: Rreport / LaTeX质量输出包

    下一篇: 对R / LaTeX表创建包的建议