Skip to content
Advertisement

Change the statistics from percentages to number of events

I found an interesting library and I would like to make changes in this code. I would like to see the number of events divided by the sum of events (like 5/52 etc.), under percentages. How can I add it?

link to the library: https://mplsoccer.readthedocs.io/en/latest/gallery/plots/plot_heatmap_positional.html

This part of the code displays data but I don’t know how to change it:

JavaScript

enter image description here

Advertisement

Answer

The code you have shown replaces the "statistic" column of the dataframe with a new column, which contains the percentages.

JavaScript

Let’s split it into a couplelines to make it easier to understand:

JavaScript

Once the percentages are calculated, the str.format() function is used to format each value as a percentage with zero decimal places (https://www.w3schools.com/python/ref_string_format.asp)

So all you need to do is change what is being formatted, and how it is formatted.

JavaScript

Or in one line:

JavaScript
Advertisement