Stacked bins for 4 labels : only two labels appear

64 Views Asked by At

l have stacked bins of 7 bins which are :

labels = ['Digits', 'digits+spec-char', 'letters', 'letters+digit','letters+special-char','All-alphabet','All-alphabet(lower+upper)']

for 4 labels which are :

'CRNN', 'CRNN+transfer learning','CRNN+Image aug','CRNN+ Img Aug+ transfer learning'

my plot works but shows bins only for CRNN+transfer learning and CRNN+ Img Aug+ transfer learning as it's depicted in the following plot. plot

Here is my code :

def bins_accuracy():
    import numpy as np
    import matplotlib.pyplot as plt
    from matplotlib.ticker import FormatStrFormatter



    N = 7
    fig, ax = plt.subplots()

    ax.yaxis.set_major_formatter(FormatStrFormatter('%.2f'))
    CRNN = (94.52,93.27, 94.34, 94.51,93.43,94.26,90)

    CRNN_transfer = (96.40,96.61,97.40,96.99,93.50,95.69,92.65)
    CRNN_img_aug=(0,0,0,0,0,94,92)
    CRNN_img_aug_transfer=(0,0,0,0,0,95,93)


    ind = np.arange(N)  # the x locations for the groups
    width = 0.35  # the width of the bars: can also be len(x) sequence
    labels = ['Digits', 'digits+spec-char', 'letters', 'letters+digit','letters+special-char','All-alphabet','All-alphabet(lower+upper)']
    p1 = plt.bar(ind, CRNN, width)
    p2 = plt.bar(ind, CRNN_transfer, width)
    p3 = plt.bar(ind, CRNN_img_aug, width)
    p4 = plt.bar(ind, CRNN_img_aug_transfer, width)

    plt.ylabel('Accuracy %')
    plt.title('Accuracy by group')
    plt.xticks(ind, ('Digits', 'digits+spec-char', 'letters', 'letters+digit','letters+special-char','All-alphabet','All-alphabet(lower+upper)'))
    plt.ylim(ymax=99, ymin=91)
    plt.legend((p1[0], p2[0],p3[0],p4[0]), ('CRNN', 'CRNN+transfer learning','CRNN+Image aug','CRNN+ Img Aug+ transfer learning'))

    plt.show()

What l want to see in my plot is stacked bins for the four group 'CRNN', 'CRNN+transfer learning','CRNN+Image aug','CRNN+ Img Aug+ transfer learning' so 4 colors rather than only two

EDIT1 l got the following after adding :

OCR_Engine = (97.12, 97.68, 96.76, 96.64, 96.30, 96.51, 96.11) p5 = plt.bar(ind + 4 * width, OCR_Engine, width)

output

Thank you

1

There are 1 best solutions below

9
On BEST ANSWER

At the moment, you are plotting the bars directly on top of each other. You can stack the bars by setting the bottom key-word:

import numpy as np
import matplotlib.pyplot as plt

N=7

fig, ax = plt.subplots()

CRNN = np.array([94.52,93.27, 94.34, 94.51,93.43,94.26,90])
CRNN_transfer = np.array([96.40,96.61,97.40,96.99,93.50,95.69,92.65])
CRNN_img_aug = np.array([0,0,0,0,0,94,92])
CRNN_img_aug_transfer= np.array([0,0,0,0,0,95,93])

ind = np.arange(N)  # the x locations for the groups
width = 0.35  # the width of the bars: can also be len(x) sequence
p1 = plt.bar(ind, CRNN, width)
p2 = plt.bar(ind, CRNN_transfer, width, bottom=CRNN)
p3 = plt.bar(ind, CRNN_img_aug, width, bottom=CRNN+CRNN_transfer)
p4 = plt.bar(ind, CRNN_img_aug_transfer, width, bottom=CRNN+CRNN_transfer+CRNN_img_aug)

plt.show()

enter image description here

EDIT:

If you want the bars side by side, you simply have to adjust the x-positions.

# side-by-side
fig, ax = plt.subplots()
ind = np.arange(0, 2*N, 2)  # the x locations for the groups
p1 = plt.bar(ind, CRNN, width)
p2 = plt.bar(ind+width, CRNN_transfer, width)
p3 = plt.bar(ind+2*width, CRNN_img_aug, width)
p4 = plt.bar(ind+3*width, CRNN_img_aug_transfer, width)

enter image description here