I want to draw 2 subplots for polar graphs with plotly. The standard way is to write :
p<-plot_ly(type="barpolar",r=1,theta=2)%>%add_trace(r=1,theta=20,subplot="polar2")
Yet, if my graphs are already created :
p<-plot_ly(type="barpolar",r=1,theta=2)
p2<-plot_ly(type="barpolar",r=1,theta=20)
How can I do, as subplot function is not an option ?
