最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

conditionalPanel javascript conditions in shiny: is there R %in% operator in javascript? - Stack Overflow

programmeradmin1浏览0评论

I am trying to build a shiny application using the conditionalPanel function from shiny package. The condition should be written in JavaScript but I would like to be able to use a condition as follows (written in R)

"TP53" %in% unlist(input$ModelVariables)

the documenatation states:

condition - A JavaScript expression that will be evaluated repeatedly to determine whether the panel should be displayed.

I'm not familiar with JavaScript at all. I've tried input.ModelVariables == 'TP53' but this doesn't work when input.ModelVariables has length bigger than 1.

My sidebarPanel fragment with conditionalPanel is below

                    checkboxGroupInput("ModelVariables", 
                                       label = h3("Which variables to view?"),
                                       choices = list( "cohort",
                                                       "stage",        
                                                       "therapy",             
                                                       "TP53",
                                                       "MDM2" ),
                                       selected = list("TP53")
                                  ),
                    conditionalPanel(condition = "'TP53' in unlist(input.ModelVariables)",
                                     checkboxGroupInput("ModelVariablesTP53", 
                                                        label = h3("Which mutations to view?"),
                                                        choices = list( "Missense",
                                                                        "Other",        
                                                                        "WILD"),
                                                        selected = list("Missense",
                                                                        "Other",        
                                                                        "WILD")
                                                        )

I am trying to build a shiny application using the conditionalPanel function from shiny package. The condition should be written in JavaScript but I would like to be able to use a condition as follows (written in R)

"TP53" %in% unlist(input$ModelVariables)

the documenatation states:

condition - A JavaScript expression that will be evaluated repeatedly to determine whether the panel should be displayed.

I'm not familiar with JavaScript at all. I've tried input.ModelVariables == 'TP53' but this doesn't work when input.ModelVariables has length bigger than 1.

My sidebarPanel fragment with conditionalPanel is below

                    checkboxGroupInput("ModelVariables", 
                                       label = h3("Which variables to view?"),
                                       choices = list( "cohort",
                                                       "stage",        
                                                       "therapy",             
                                                       "TP53",
                                                       "MDM2" ),
                                       selected = list("TP53")
                                  ),
                    conditionalPanel(condition = "'TP53' in unlist(input.ModelVariables)",
                                     checkboxGroupInput("ModelVariablesTP53", 
                                                        label = h3("Which mutations to view?"),
                                                        choices = list( "Missense",
                                                                        "Other",        
                                                                        "WILD"),
                                                        selected = list("Missense",
                                                                        "Other",        
                                                                        "WILD")
                                                        )
Share Improve this question edited Dec 10, 2017 at 7:51 Cœur 38.8k25 gold badges205 silver badges277 bronze badges asked Apr 14, 2015 at 20:57 MarcinMarcin 8,0749 gold badges53 silver badges101 bronze badges 3
  • Have you tried 'TP53' in input.ModelVariables in JavaScript? – Alex A. Commented Apr 14, 2015 at 21:02
  • This 'TP53' in input.ModelVariables doesn't work since input.ModelVariables is a list. And condition="'TP53' in unlist(input.ModelVariables)" makes condtitionalPanel permanent. – Marcin Commented Apr 14, 2015 at 21:37
  • I've updated my question with more code. – Marcin Commented Apr 14, 2015 at 22:07
Add a ment  | 

1 Answer 1

Reset to default 15

According to this answer this condition should work (and it works for me) condition = "input.ModelVariables.indexOf('TP53') > -1"

发布评论

评论列表(0)

  1. 暂无评论