I was wondering if it is possible to add more than one condition in conditionalPanel in shiny. This is an example:
conditionalPanel
conditionalPanel(condition = \"i
You can have as complicated of a statement as you want as long as it evaluates to TRUE or FALSE at the end. You probably want to combine your two conditions either with AND && or OR ||, like this (for OR):
&&
||
"input.SELECT == 1 || input.FED == 2"