I am trying to plot a dict with matplotlib, like this (just much more data):
b = {"A": ['26', '44', '10', '22', '26'], "B": ['39', '24'], 'C': ['22', '23'], 'D': ['21', '12']}
I wanted to make one boxplot / violinplot for each key in the dict, (than adding mean, std. deviation, etc.) like:
But posts like: Plotting a dictionary with multiple values per key does not work for me, because my keys are letters (coding for amino acids).
I am feeling like i don't see the elephant in the room.