在R Markdown中为Kable表添加标题

时间:2016-07-02 11:28:34

标签: r r-markdown

我正在使用RMarkdown写一些大学作品 我使用下面的代码创建了一个表,需要将其导出到Microsoft Word

任何人都可以告诉我如何在表格中添加描述数据的标签,或者之后我必须在MS Word中执行此操作

    ---
    title: "Data"
    author: "foo"
    date: "2 July 2016"
    output:
      word_document:
    bibliography: bibliography.bib
    ---

    kable(table(Rawdata$Var1, Rawdata$Var2))

1 个答案:

答案 0 :(得分:2)

使用caption中的kable参数。

如果您想要更多选项来格式化Word输出中的表格,我建议您下载Gmisc包并使用Gmisc::docx_document格式。请记住,它会将文件另存为HTML文件,可以作为Word文档打开并保留格式。

例如:

---
title: "Data"
author: "foo"
date: "2 July 2016"
output:  Gmisc::docx_document
---

```{r}
knitr::kable(head(mtcars[, 1:3]),
             caption = "This is the table caption")
```