Reputation: 489
I want to plot multidimensional points in a graph. To do so, I want each axis lined up in parallel. So every point becomes a line in this plot. Maybe there is also a special name for this type of graphs/plots? In the figure below, I have sketched a picture of such a plot with exemplarily 4 axes and the point (5, 60, -10, 7.5). It would be fantastic if the axes are scalable seperately. Does anybody know a plot-package in python which is capable to plot in this way, and how to do it in that library?
Upvotes: 4
Views: 180
Reputation: 156
I don't know of a straightforward way to do that.
However, I can recommend using Radar Plots, it shows exactly the information you want to show:
https://williamhuster.com/radar-chart-in-python/
Upvotes: 2