1
  1. 如何将我的 Summ.R 文件运行到 R 闪亮的应用程序中。我创建了 Summ.R 和 app.R。实际创建数据框的 Summ.R,我希望使用 Rshiny 应用程序将其变为红色。但目前,它给了我一个错误,如何修复此错误以在 Rshiny 应用程序中查看此数据框。

  2. 请分享任何资源以了解如何将常规 R 脚本合并到 Rshiny 应用程序中。

总和


data <- data.frame(
  SSN = c(204,401,101,666,777), 
  Name=c("Blossum","Buttercup","Bubbles","MojoJojo","Professor"), 
  Age = c(7,8,6,43,56), 
  Gender = c(0,0,0,1,1)
)

data

输出

> data
  SSN      Name Age Gender
1 204   Blossum   7      0
2 401 Buttercup   8      0
3 101   Bubbles   6      0
4 666  MojoJojo  43      1
5 777 Professor  56      1

瑞希尼

应用程序.R

library(shiny)
shinyApp(
  fluidPage(
    dataTableOutput("data")),
  function(input, output, session){
    source('R/Summ.R', local = TRUE)
    output$data <- renderDataTable(data)
  }
)

错误

Error in file(filename, "r", encoding = encoding) : 
  cannot open the connection
4

0 回答 0