Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地目录中有一个外部创建的 png 图像,我想使用 knitr 将其导入到报告中。最终的目标文件类型是 html。当我用 R 代码创建我自己的数字时,我可以毫不费力地让它们出现,但我不知道我认为这是一个更简单的问题。
当我在它的时候,我将如何导入一个我有一个 url 的图形?
如果您已经有一个本地图像,您可以使用 HTML 或 markdown 语法将其包含在您的文档中。HTML 语法是<img src="path/to/your/image" />,markdown是![title](path/to/your/image).
<img src="path/to/your/image" />
![title](path/to/your/image)
您可以使用R Markdown 中的knitr::include_graphics()在knitted html 中包含图像。
knitr::include_graphics(rep('path_of_image.png'))
确保在路径中使用“/”而不是“\”。