I am making a plotly chart that needs two y-axis.
I can get this to work if I only have two traces (data1 and data2)
My problem:
I add everything inside repeat looks, so I end up with something like:
trace1 = go.Scatter (temperature at 12.00), trace2 = go.Scatter ( temperature at 14.00) etc
trace8 = go.Bar (wind at 12.00), trace9 = go.Bar( wind at 14.00), etc.
Is there a way to have the windspeed (go.Bar) y-axis on the right and the temperature (go.Scatter) y-axis on the left ?