I have a matrix where each row is a case and each column is an attribute, it is a numerical value that the larger it is the greater the relationship of that case to the attribute. This is an example of a matrix with 3 cases and 5 attributes:
A B C D E
1 2 3 3 2 0
2 0 0 0 5 5
3 0 0 0 10 0
I try to make a chart using R
or Python
that combines the scatter plots and the polar charts. This way, in this specific case the chart would have a pentagon or circle shape, being each vertex or tick an attribute, while there would be three points (each case) that would be positioned according to the distribution of its attributes. This is the result that should be returned:
Is there any way to generate a graph similar to this one?