How to plot 2 radarplots in a shiny tab in one polar axis

286 views Asked by At

radar plots in one shiny tab

Hello, I would like to plot 2 radars in the same axis in my shiny tab. The first radar plot takes input from the checkbox and the second one from the selectInput.Both datasets displayed have the same length and the same variables. I am thinking that is a matter of tabsetpanel parameter. Pls help.

Here is my ui.R

tabPanel("RCD + ACD Plots", chartJSRadarOutput("radar",width = "900%", height = "300%"),
chartJSRadarOutput("radar2",width = "900%", height = "300%" )),
0

There are 0 answers