I would like to use PlotlyJS’s parallel coordinates plot to achieve something similar to this python example. I have tried extracting into separate dataframes my separate groupings, built separate traces and then, finally
plot([trace1, trace2, trace3])
but this isn’t doing it for me. Does anybody have any suggestions?
Something along the lines of the example linked above would be even nicer but beggars can’t be choosers .
Thanks for the suggestion. Yes, I knew about it and I had been using it as a starting point, and it got me a long way. However, I was not able to plot sub categories of my dataframe in different line colors and styles.
Okay. Well here is a MWE that starts with an (unstacked) dataframe and plots a parallel coordinates plot into three groups. Does this help get you closer?