Skip to content
Advertisement

Plotting catecorigal XY data including labels using Python (e. g. BCG matrices)

I like to draw 2×2 / BCG matrices. This time I have a rather big dataset (more than 50 topics and multiple values, e. g. A and B). I wonder how I can draw this using Python?

The result should look similiar to this:

enter image description here

I have found a couple of questions regarding scatter plots, but none of those really deals well with e.g. two topics with identical values (see topics 3,2,L,J,… above in the drawing).

The ID should be displayed in the drawing and ID’s with same set of values should not overlap, but stay rather close together.

Is there a way to do this? If not Python, I am also happy for other suggestions.

Here is an example dataset:

JavaScript

Advertisement

Answer

The code below should get pretty close to what you’re looking for, I think. The basic idea is that each set of points clustered at a location are placed in a circle centered on that location. I defined the radius of the circle in a bit of an ad hoc way just to make it look nice for the dimensions I encountered, but you might need to alter it a bit for your specific task.

First, this is just a copy/paste of your values put into a list.

JavaScript

Next, take the data you provided above and organize it slightly differently into one list of IDs and another of values for A and B.

JavaScript

Now we need to find the unique AB pairs and their ID. There are many ways to arrive at this from your original list, others may have improved suggestions depending on your original data structure and efficiency considerations.

JavaScript

For another project of mine, I had designed this class to do something very similar to what you’re trying to do and so I’m re implementing it here with a couple of variations. Basically each unique point and accompanying IDs go into their own object, which allows you to plot the points in a circle centered around the unique point easily.

JavaScript

Now, create clique object for each cluster of points and plot it.

JavaScript

And, finally, clean up the plot a little.

JavaScript

resultant figure

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement