使用Quarto,如何渲染包含shinylive-r代码的独立HTML文件?

问题描述 投票:0回答:1

问题描述

我正在尝试使用 Quarto 创建一个独立的 HTML 文件,其中包含

{shinylive-r}
代码块,但我遇到了问题。

可以这样做吗?请参阅下文以重新创建我正在做的事情。

注意: 如果我在 yaml 标头中排除

self-contained: true
选项,我就能够正确渲染我的 HTML 文件。然而,我的目标是创建一个独立的 HTML 文件。

重新创建的步骤

我有以下

.qmd
文件,名为
matts_reports.qmd

    ---
    title: "My document"
    format: html
    filters: 
    - shinylive
    self-contained: true
    ---
    
    # Hello, world!
    
    ## shinylive Code Block
    
    Here is a shinylive codeblock:
    
    ```{shinylive-r}
    #| standalone: true
    #| viewerHeight: 800
    #| 
    library(shiny)
    
    ui <- fluidPage(
      titlePanel("Hello Shiny!"),
      sidebarLayout(
        sidebarPanel(
          sliderInput(
            inputId = "bins",
            label = "Number of bins:",
            min = 1,
            max = 50,
            value = 30
          )
        ),
        mainPanel(
          plotOutput(outputId = "distPlot")
        )
      )
    )
    
    server <- function(input, output) {
      output$distPlot <- renderPlot({
        x <- faithful$waiting
        bins <- seq(min(x), max(x), length.out = input$bins + 1)
        hist(x,
          breaks = bins, col = "#75AADB", border = "white",
          xlab = "Waiting time to next eruption (in mins)",
          main = "Histogram of waiting times"
        )
      })
    }
    
    shinyApp(ui = ui, server = server)

但是,当我运行这个(即在 R Studio 中单击渲染)时,我遇到了几个问题:

  1. shinylive 代码块在浏览器中呈现为文本,而不是实际运行闪亮的应用程序。

enter image description here

  1. 我在 R 后台作业输出中看到此问题:

查看文件的更改 /shinylive.js(404:未找到)

enter image description here

r shiny quarto r-shinylive
1个回答
0
投票

是的,我也尝试过这个,html 的shinylive-r 部分不会显示该应用程序。在 quarto gitlab 中看到了this issues,了解为什么会发生这种情况。

这里显示了一个可能的解决方法,但我没有尝试。仅当我想自己将其作为独立的 html 查看时才有用,但如果我想与其他人共享 html 则无用。

© www.soinside.com 2019 - 2024. All rights reserved.