UweJ
UweJ

Reputation: 489

Is it possible to plot multidimensional points in parallel aligned axes with python

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?

Desired plot of parallel aligned coordinate axes.

Upvotes: 4

Views: 180

Answers (1)

EyalItskovits
EyalItskovits

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

Related Questions