如何在R Markdown文件中放置 到位 的HTML文件?
我通过choroplethr创建了一些不错的动画等值区域地图。
如链接所示,动画等值线通过创建一组PNG图像来运行,然后将这些图像滚动到循环显示图像的HTML文件中,以显示动画。效果很好,看起来很棒。
但是现在我想在.Rmd文件中嵌入/合并这些页面,以便我有一份包含这些动画等值的整体报告以及其他工作。
在我看来应该有一个简单的方法来做一个等同于
链接:
[please click here](http://this.is.where.you.will.go.html)
或
图片:
![cute cat image](http://because.that.is.what.we.need...another.cat.image.html)
图像路径正是我想要的:一个“炸毁”以将信息放在适当位置的参考,而不仅仅是作为链接。如何使用完整的HTML文件而不仅仅是图像?有什么办法吗?
假设我的choropleth HTML文件位于'./animations/demographics.html'
的本地路径中,我有一个R Markdown文件,如:
---
title: 'Looking at the demographics issue'
author: "Mike"
date: "April 9th, 2016"
output:
html_document:
number_sections: no
toc: yes
toc_depth: 2
fontsize: 12pt
---
# Introduction
Here is some interesting stuff that I want to talk about. But first, let's review those earlier demographic maps we'd seen.
!![demographics map]('./animations/demographics.html')
我假设/假装!!
是我想要的前提:允许我将HTML文件嵌入到报告的其余部分。
两次更新。最近,我仍然无法让事情发挥作用,所以我把它全部推到GitHub repository,以防有人愿意帮助我理清问题。更多细节可以在该repo的自述文件中找到。
似乎能够将HTML嵌入到R Markdown文件中会非常有用,所以我一直在努力解决它。
(旧评论)
根据一些有用的建议,我尝试了R Markdown文件中的以下内容:
闪亮的方法:
```{r showChoro1}
shiny::includeHTML("./animations/demographics.html")
```
(我还在YAML部分添加了runtime:Shiny
。)
htmltools
方法:
```{r showChoro1}
htmltools::includeHTML("./animations/demographics.html")
```
(在这种情况下,我没有对YAML进行任何更改。)
在前一种情况下(Shiny
),它根本不起作用。事实上,包括HTML似乎完全破坏了文档的功能,因此运行时似乎永远不能完全正常运行。 (简而言之,虽然它似乎加载了所有东西,但“装载”的旋转螺旋却永远不会消失。)
在后一种情况下,没有其他东西搞砸了,但它是一个破碎的图像。奇怪的是,文档顶部有一个“等值线播放器”功能区可以正常工作,只是没有任何图像弹出。
为了我自己的理智,我还提供了简单的链接,工作正常。
[This link](./animations/demographics.html) worked without a problem, except that it is not embedded, as I would prefer.
因此嵌入显然是一个挑战。
答案 0 :(得分:10)
这是一个hack(可能不太优雅)......想法是在Rmd中以编程方式直接插入HTML然后渲染Rmd。
temp.Rmd文件:
[(u'courses',),(u'gradingscheme',),(u'students',),(u'topstudent',)]
test.html文件:
---
title: "Introduction"
author: "chinsoon12"
date: "April 10, 2016"
output: html_document
---
<<insertHTML:[test.html]
etc, etc, etc
```{r, echo=FALSE}
htmltools::includeHTML("test.html")
```
etc, etc, etc
用HTML代码替换Rmd代码然后渲染的详细代码(可能会被缩短很多)
<html>
<head>
<title>Title</title>
</head>
<body>
<p>This is an R HTML document. When you click the <b>Knit HTML</b> button a web page will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:</p>
<p>test test</p>
</body>
</html>
编辑:htmltools :: includeHTML也适用于我提供的示例文件。是因为你的特定html不喜欢UTF8编码吗?
编辑:将@MikeWilliamson评论纳入反馈
我尝试了以下
我似乎找回了html但不确定结果是否符合预期
您是否也在第2页面临同样的问题?您可能希望发布错误消息并要求修复:)。这是我的错误消息
library(stringi)
subHtmlRender <- function(mdfile, htmlfile) {
#replace <<insertHTML:htmlfile with actual html code
#but without beginning white space
lines <- readLines(mdfile)
toSubcode <- paste0("<<insertHTML:[",htmlfile,"]")
location <- which(stri_detect_fixed(lines, toSubcode) )
htmllines <- stri_trim(readLines(htmlfile))
#render html doc
newRmdfile <- tempfile("temp", getwd(), ".Rmd")
newlines <- c(lines[1:(location-1)],
htmllines,
lines[min(location+1, length(lines)):length(lines)]) #be careful when insertHTML being last line in .Rmd file
write(newlines, newRmdfile)
rmarkdown::render(newRmdfile, "html_document")
shell(gsub(".Rmd",".html",basename(newRmdfile),fixed=T))
} #end subHtmlRender
subHtmlRender("temp.Rmd", "test.html")
答案 1 :(得分:2)
您是否在YAML标题中尝试了 包含: 选项?
https://rmarkdown.rstudio.com/html_document_format.html#includes
但也许你会遇到同样的问题:我想将HTML文件包含在我的RMarkdown文档的特定部分,而不是在标题中或在正文之前/之后。
答案 2 :(得分:-2)
可以尝试将此行放入Rmarkdown然后编织。 (YAML标题“输出:html_document”;如果“运行时:闪亮”不知何故它不起作用)