如何在Shiny应用程序中使用ggplot创建反应图

时间:2016-07-10 07:02:30

标签: r ggplot2 shiny

谁可以提供帮助,这是我的第一篇文章。我花了几个小时试图弄清楚如何使用ggplot为我想要创建的闪亮应用程序生成条形图。然而,ui作品找到了;服务器功能生成一个空图。问题在于renderPlot函数。我相信我不能将反应值正确地传递给ggplot中的aes_string参数。 C2是过滤的数据集。目标是构建一个简单的应用程序,用户在其中选择两个变量,基于这些变量过滤数据集。子集化数据集将传递给ggplot数据参数。

       library(shiny)
library(dplyr)


ui <- fluidPage(
  sidebarLayout(
    sidebarPanel(
      selectInput(inputId = "Demog",label = "Factor:",choices = c("HH Income" = "Income",
                                                                  "Age Group" = "Age",
                                                                  "US Region" = "Region") , selected = "Age"),
      selectInput(inputId = "Car",label = "VW Model:",choices = c("BEETLE" = "BEETLE",
                                                                  "CC" = "CC",
                                                                  "EOS" = "EOS",
                                                                  "GOLF" = "GOLF",
                                                                  "GTI" ="GOLF SPORTSWAGEN GTI",
                                                                  "JETTA" = "JETTA",
                                                                  "PASSAT" = "PASSAT",
                                                                  "TIGUAN" = "TIGUAN",
                                                                  "TOUAREG" = "TOUAREG") , selected = "BEETLE"),
      radioButtons(inputId = "Metric",label ="Measurement Type",choices = 
                     c("Conquest Volume Index" = "TotCmpConqVol_IDX","C/D Ratio" = "TotCmpCDRatio_IDX"), selected = "TotCmpConqVol_IDX" )                

    )
  ),
  mainPanel(
    tags$h1("The Bar Charts"),
    tags$h2("The metrics"),


    plotOutput("P1")

  )

)
server <- function(input, output){
  library(ggplot2)
  CONQDF <- read.csv("C:/Users/Reginald/Desktop/CONQ_VW/CONQUEST2.csv")

  C2 <- reactive(subset(CONQDF,input$Demog %in% levels(input$Demog)[1] & CONQDF$VW_Model == input$Car))

  output$P1 <- renderPlot({
    ggplot(C2(),aes_string(x="CompMake", y=input$Metric))+ geom_bar(stat = "identity")
                          })
}






shinyApp(ui,server)

2 个答案:

答案 0 :(得分:3)

  然而, ui作品找到了;服务器函数生成一个空   曲线图。

这很可能是因为函数subset返回一个空数据集。为了调试代码,首先,我将在控制台中打印出这部分:

C2 <- reactive(subset(CONQDF,input$Demog %in% levels(input$Demog)[1] & CONQDF$VW_Model == input$Car))

我认为这部分是错误的,因为input$Demog只是一个字符串而不是一个因素。这就是levels(input$Demog) = NULLinput$Demog %in% levels(input$Demog) = FALSE的原因。因此,您将获得一个空数据集。

要检查一下:

output$P1 <- renderPlot({
    print(C2()) # print it out to the console.
    ggplot(C2(),aes_string(x="CompMake", y=input$Metric))+ geom_bar(stat = "identity")
})

如果是这种情况,您只需要重新考虑子集部分。

答案 1 :(得分:1)

您的C2函数似乎无法查看CONQDF(因此为空白图)。您可以在()来电CONQDF之后添加C2,以便每次都运行read.csv,但您可能最好将read.csv移到外面你的服务器功能。

所以移动这一行

CONQDF <- read.csv("C:/Users/Reginald/Desktop/CONQ_VW/CONQUEST2.csv")

到您脚本的顶部,位于library(dplyr)下方。这将在页面首次加载时闪亮读取该文件,而不是每次更新输入时,并且还将结果数据帧放入全局环境中,这意味着您的C2 <-调用将能够看到它

我无法轻松复制您的应用,因此我无法测试我的答案。请告诉我它是否有帮助。