2
我使用一個函數返回了一個n數據框的列表:根據變量的層數,n是可變的。顯示從列表輸出中提取的多個表格
我想顯示使用循環這n個表中server.R
這裏是我的代碼:
outlist2 <- reactive(label="toto", ({
if(is.null(input$datafile)){return()}
if(is.null(input$varinteret)
|| is.null(input$vartemps)
# ||is.null(input$apparie)
||is.null(input$tempsrefouinon)
||is.null(input$prodrefouinon)
# ||is.null(input$checkprod)
# ||is.null(input$checkprodref)
)
{return()}
else
{
data<-filedata()
res.comparer<-compareT0parproduit(data=data,y=input$varinteret,group=input$varprod,TemoinNametemps=input$checktempsref, group2 = input$vartemps)
}
}))
#
nblevels<-reactiveValues(filedata()[,input$varprod])
for (i in 1:nblevels){
output$uicomparetempsT0(i) <- shiny::renderTable({
outlist2()$res.comparer[[i]]
和ui.R
shiny::tableOutput("uicomparetempsT0")
而且我的錯誤消息
Warning: Error in .getReactiveEnvironment()$currentContext: Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.)
Stack trace (innermost first):
44: .getReactiveEnvironment()$currentContext
43: .dependents$register
42: filedata
41: reactiveValues
40: server [C:\Users\itm\Desktop\Documents\appli Clarins test/server.R#454]
1: shiny::runApp
Error in .getReactiveEnvironment()$currentContext() :
Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.)
1 tableOutput只能輸出1個表。不是多個。 – GAURAV
謝謝Gaurav, 但它是唯一的一個數據表。 outlist2()$ res.comparer [[i]]是一個表。 –