Link to a local html file on RMarkdown with Shiny
我有一个带有闪亮的交互式 RMarkdown 文档(即在 YAML 标头中使用
为了这个例子,假设我的工作目录中有以下文件:
-
工作目录/
- rmarkdown_with_shiny.Rmd
- 闪亮的应用程序.R
-
万维网/
- my_file.html
我想做的是在 rmarkdown_with_shiny.Rmd 中创建一个链接,单击该链接会打开文件 www/my_file.html。
文件 rmarkdown_with_shiny.Rmd 中的代码如下,包括我尝试过的所有内容,但到目前为止没有任何效果:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
— title:"Rmarkdown with shiny" output: html_document runtime: shiny — [link_1](www/my_file.html) “`{r shiny_links, echo=F, eval=T} shinyAppFile("shiny_app.R") |
最后一行
中的代码
1
2 3 4 5 6 7 8 9 10 |
library(‘shiny’)
ui <- fluidPage( server <- function(input, output) { |
令人困惑的部分是,如果这行
如果有人能告诉我如何在 rmarkdown 闪亮文件中链接本地 html 文件,我将不胜感激。特别是如果有办法使用闪亮的函数而不是 MarkDown 语法来做到这一点。但无论哪种解决方案都受到欢迎,只要它创建一个有效的链接。
基本上,当我们运行 Shiny 应用程序时,
但是,如果我们想通过
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
— title:"Rmarkdown with shiny" output: html_document runtime: shiny — “`{r setup, include = FALSE} Relative File Path: [My HTML file](www/my_file.html) Relative File Path: My HTML file Relative File Path: Absolute File Path: |
有关原始解决方案和讨论,请参见此处。另外,致敬这里的包。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269194.html