作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道如何将(工作)目录中的 png 图像导入/上传到 RStudio Notebook 脚本中?我喜欢将它包含在 Notebook 的 HTML 输出中。
Rmarkdown ( http://rmarkdown.rstudio.com/authoring_basics.html ) 中建议的脚本在 Notebook 中不起作用。
这是我使用/创建的一些代码:
#' Plot pathways using the bioconductor *pathview* package. Five *.png images are placed in the working directory by default.
>p <- pathview(gene.data=foldchanges, pathway.id=keggresids, species="hsa"))
>str(p)
![imagename](/images/file.png)
最佳答案
嗯,这就是你想要的吗?只是将 png 插入到 R Markdown 文件中?
---
title: "Crab"
output: html_document
---
#![Here is a Crab](Crab.png)
You can also embed plots, for example:
```{r, echo=FALSE}
plot(cars)
```
关于r - 如何将图像上传到 RStudio Notebook?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34345712/
我是一名优秀的程序员,十分优秀!