闪亮,R:复选框,geom_hline,ggplot

时间:2018-10-04 09:48:44

标签: r checkbox ggplot2 shiny geom-hline

在闪亮的应用程序中,我只想在用户选择带有复选框的情况下在ggplot中添加geom_hline,我也希望用户为yintercept设置一个{ numericInput。 我相信有一个简单的解决方案,但是由于我不是编码人员,所以我想问问这是最简单的方法。 我的代码是这样的:

在用户界面中

numericInput('hline', label ='Limits', 0)

和在服务器中

 plotInput <- reactive({



    ggplot(data = dataforplot(), aes(x = ID_Polymer, y = value), position = position_dodge(width = 1))  +
      geom_bar(aes_string( fill=razeni()), position = position_dodge(width = 1), stat="identity", color="white")+
      theme_minimal() +
      theme(legend.text=element_text(size=21))+
      theme(text = element_text(size=21))+
      theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank()) +
      ggtitle(input$title_text_box_id) + 

      geom_hline(aes(yintercept = input$hline, linetype = "Minimal limit"), color='red', size=0.4)+

      labs(x = "", y = input$ylabel_text_box_id) + 
      geom_text(aes(x = ID_Polymer, y = value,Group=Polymer,label=value), 
                position = position_dodge(width = 1),vjust=2, size=5,colour = "white", fontface = "bold") +
      scale_fill_tableau("Tableau 10")+
     scale_x_discrete(labels=c(xpopisky()))#puts a reactive in x labels

  })

这有效,只有我不知道告诉闪亮的“仅当我通过选中复选框告诉您时显示geom_hline的最佳方法”,我认为应该涉及一个if else周期。 非常感谢您的任何建议!

1 个答案:

答案 0 :(得分:0)

您可以将ggplot对象分配给变量。以下伪代码演示了这一点:

p = ggplot(data = ......) +
      geom_bar(....) +
      theme(....)

if(input$hline){
    p = p + geom_hline(....)
}

请注意,如果您提供了一个最小的工作示例,那么您的问题将会得到改善。现在,您问题中的代码包含无关的详细信息(例如ggplot主题和标签),无法按原样运行。