gpt4 book ai didi

r - 如何在 Shiny 应用程序中的函数之间传递数据

转载 作者:行者123 更新时间:2023-12-04 01:44:53 24 4
gpt4 key购买 nike

我有一个 Shiny 的应用程序,其中 server.r 包括以下代码

shinyServer(function(input, output) {

data <- reactive(function() {
# some processing
df # dataframe with columns: name,date,count
})

output$plot1 <- reactivePlot(function() {
# boxplot based on df$count grouped by df$name
})

output$plot2 <- reactivePlot(function() {
# linegraph based on x=df$date, y=df$count grouped by df$name
})
})

我如何构建它以便我可以在reactivePlots 中引用df$count 等。我在reactive 函数中创建了“数据”

干杯

最佳答案

使用 data()$count . ()是您检索响应式(Reactive)函数值的方式,以及您可以看到 data 的事实。来自两个 react 性绘图函数只是 R 的范围规则的自然结果。

关于r - 如何在 Shiny 应用程序中的函数之间传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13592225/

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