Home > Net >  How to plot colored geometric forms and populate them with string from lists
How to plot colored geometric forms and populate them with string from lists

Time:04-15

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:

enter image description here

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:

I have used the Result Image

  • Related