2

I would like to make a diagram in Python similar to the one shown below. From what I've seen so far, there is no a library that I could use directly. Can you suggest me where to start from, for example, would it be worth to improvise by stacking horizontally multiple subplots. Is there maybe a better approach?

Thanks!

slackdiagram

Marina
  • 330
  • 1
  • 6
  • 15

1 Answers1

2

I believe the name you're looking for is Parallel Coordinates Plot.

I'm sure Plotly supports it and there are tutorials online for other libraries as well.

Let me know if this helps.

Edit: and judging by this image from Plotly's docs your example image comes from there.

Chillie
  • 1,356
  • 13
  • 16
  • 1
    yes, that is it, I found the code here https://plot.ly/python/parallel-coordinates-plot/ Many thanks! – Marina Dec 28 '18 at 14:23