fileInput函数在R Shiny中不响应

爱默生

我是R和R Shiny的新手,并且一直在致力于开发一个统计应用程序,该应用程序将允许用户导入文件,然后对数据运行不同的统计程序。直到最近,fileData函数一直对我有效,现在,每当我尝试上传文件时,都不会打开任何文件。我已经尝试了所有可以想到的方法来运行它,但是似乎文件没有附加到该函数上。任何帮助将不胜感激!

library(shiny)
library(shinyFiles)
library(dplyr)
library(shinythemes)

ui <- fluidPage(theme = shinytheme("cosmo"),
# Application title
titlePanel("Stats"),

# Sidebar
sidebarLayout(
    sidebarPanel(
        tabsetPanel(type = "tab", 
                    tabPanel("SCI",

                        fileInput("file1", "Insert File", multiple = TRUE, accept = c("text/csv", "text/comma-separated-values, text/plain", ".csv")),

                        selectInput("statChoice", "Choose Stats", c("None" = "None", "ANOVA 0 w/in 1 btw" = "A1btw", "ANOVA 0 w/in 2 btw" = "A2btw")),

                            conditionalPanel("statChoice == 'A1btw'",
                                uiOutput("ind1"),
                                uiOutput("dep1")),

                            conditionalPanel("statChoice == 'A2btw'",
                                uiOutput("ind1"),
                                uiOutput("ind2"),
                                uiOutput("dep1")),
            )
        )
    ),

    # Show a plot of the generated distribution
    mainPanel(
       tabsetPanel(type = "tab",
                   tabPanel("Data", 
                            dataTableOutput("fileData")),
                   tabPanel("Summary Statistics"),
                   tabPanel("Graphs"))
    )
    )
)

server <- function(input, output) {
fileData <- eventReactive(input$file1,{
    read.csv(input$file1$dataPath, header = TRUE, sep = ",", dec = ".")
})

output$fileData <- renderDataTable(
    fileData()
)

vars <- reactive({
    names(fileData())
})

output$ind1 <- renderUI({
    selectInput("var1", "Independent 1", choices = vars())
})

output$ind2 <- renderUI({
    selectInput("var2", "Independent 2", choices = vars())
})

output$dep1 <- renderUI({
    selectInput("var3", "Dependent 1", choices = vars())
})
}

shinyApp(ui = ui, server = server)
瓦尔迪

棘手,因为Shiny不会对此发出任何警告:
如果在Ui.R中两次使用相同的“输出”,则Shiny应用将无法工作

一切看起来都不错,除了重复使用uiOutput("dep1")uiOutput("ind1")

conditionalPanel("statChoice == 'A1btw'",
    uiOutput("ind1"),
    uiOutput("dep1")),

conditionalPanel("statChoice == 'A2btw'",
    uiOutput("ind1"),
    uiOutput("ind2"),
    uiOutput("dep1")),

只能使用一次输出

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章