在RMarkdown使用图像作为表?(Use image as table in RMarkdown

2019-09-26 16:03发布

我明白,我想要做会听起来很傻,但请多多包涵。 我想插入表格的现有图像(PNG)到将变成一个PDF的文档RMarkdown。 有没有什么办法可以做到这一点,必须编号一个表治疗的形象呢? 也就是说,很明显,我可以做

![A caption for my table](my_table_as_image.png)

但问题是,这将是编号为如图X,不表Y.我想它被命名/编号为表。

谢谢你的任何建议。

Answer 1:

貌似我有一个办法做到这一点的kable有一些 启发 ......这还有两条水平线,但没关系的时刻:

```{r echo=F, warning=F}
temp.df = data.frame(image="![](mytable.png)")
temp.mat <- as.matrix(temp.df)
colnames(temp.mat) <- NULL
knitr::kable(temp.mat, caption="This is my caption")

```


文章来源: Use image as table in RMarkdown?