如何删除图像上的小标题?

时间:2019-11-13 15:44:30

标签: r image r-markdown tibble

我正在尝试将图像上传到R Markdown模板中,但是每次尝试将小标题添加到图像上方时,我都不知道如何在保留图像小巧的同时删除小标题。

下面是我使用的代码

facebook <- image_read('//ecfle35/STAFF-HOME$/MaxEmery/My Pictures/Successful post images/facebook oct.png')
print(facebook)

最终结果

Click here to view

我想保持图像不变,只是删除小标题,有人知道吗?

1 个答案:

答案 0 :(得分:1)

而不是使用image_read,请尝试使用以下方法,这是为了将数字包括在R Markdown中:

knitr::include_graphics('PATH_TO_FILE')