I have 3 lists with some strings on it:
high = ['string1','string2','string3']
med = ['string4','string5','string6']
low = ['string7','string8','string9']
I want to make a plot like the one below:
It can be any geometric form but I want to put inside them the string from the 3 lists:
red form gets high list's strings
yellow form gets med list's strings
green form gets low list's string
I have no idea where to start if someone can help me with this, i appreciate
CodePudding user response:
Here's how I approached it: