I need to do a plot using matplotlib.pyplot with the follow characteristics
I have 4 arrais of data.
The array 1 and 2 need to be together in the same bar, but with different colors.
The array 3 and 4 need to be beside the first bar.
The results will be a graphic like this:
If I have the datas:
data_1_part_1 = (20, 35, 30, 35, 27)
data_1_part_2 = (25, 32, 34, 20, 25)
data_2 = (2, 3, 4, 1, 2)
data_3 = (3, 5, 2, 3, 3)
Someone knows how can I plot this graphic?