gpt4 book ai didi

r - 如何在 Shiny (R) 中绘制流程图 (bupar)?

转载 作者:行者123 更新时间:2023-12-05 06:22:19 24 4
gpt4 key购买 nike

在我的应用程序中,我想上传一个本地 csv 文件(事件日志),显示数据表,然后使用 csv 文件(bupar)中的数据创建一个流程图。在普通的 R 脚本中,流程图的创建工作正常。但是,如何通过按下按钮“createDiagram”上的按钮在 Shiny 的应用程序中绘制流程图(在数据表下方)?提前致谢!

代码下方:

library(shiny)


ui <- fluidPage(

titlePanel("Visualization"),

sidebarLayout(

sidebarPanel(

fileInput("file1", "Choose a File:",
multiple = FALSE,
accept = c("text/csv",
"text/comma-separated-values,text/plain",
".csv")),

tags$hr(),

actionButton("createDiagram","Create a Process Diagram"),

tags$hr()

),

mainPanel(
tableOutput("contents"),
plotOutput("plot")
)
)
)

server <- function(input, output) {

output$contents <- renderTable({

req(input$file1)

tryCatch(
{
inputData <- read.csv2(input$file1$datapath)
},
error = function(e) {
stop(safeError(e))
}
)
})
}


# Create Shiny app ----
shinyApp(ui, server)

最佳答案

processmap() 输出一个 dgr_graph 对象。这些可以在 Shiny 的应用程序中呈现

library(DiagrammeR)
grVizOutput(outputId = "process")

output$process <-  renderGrViz({
plot <- process_map(eventlog, render = F)
render_graph(plot)
})

关于r - 如何在 Shiny (R) 中绘制流程图 (bupar)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59322434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com