1

Here is my diagrams, enter image description here

I want to remove the labels of the second bar that is C1,C2,C3,C4,C5, because it is repeating.

Lars
  • 110
  • 1
  • 6
Tariq Hussain
  • 53
  • 1
  • 8

1 Answers1

1

You could try:

plt.gca().legend.set_visible(False)

or

plt.gca().legend.remove()

I think.

user101893
  • 161
  • 3