No handles with labels found to put in legend : Matplotlib Warning (Fix)

No handles with labels found to put in legend

No handles with labels found to put in legend warning occurs in Matplotlib when we call legend() function without labels and their respective handles while plotting visualizations. In this article we will understand the root cause for this warning and also explore how can we fix this warning.

No handles with labels found to put in legend ( Cause ) –

Lets draw any simple matplotlib chart and understand –

import matplotlib.pyplot as plt
import numpy as np

x = np.array(["Div1", "Div2", "Div3", "Div4"])
y = np.array([30, 18, 21, 28])
plt.bar(x,y)
plt.legend()
plt.show()

Here plt.legend() is called without any handle and their respective labels. Hence we will get the same warning (No handles with labels found ). Lets see the output-

Cause No handles with labels found
Cause No handles with labels found

Actually matplotlib.pyplot.legend() is for adding legends on plot.

Solution 1 : passing legend name as parameter

The simplest and easiest way to fix this warning is providing the legend name with parameter.

plt.legend(["Points"])

 

solution by parameterizing No handles with labels found
solution by parameterizing No handles with labels found

Solution 2 : Passing Labels with Autodetect in legend() function-

Here we will provide the label while plotting bar chart and when we call

plt.bar(x,y ,label='Points as Label')

Lets understand how ?

 

Auto detect lables in legend
Auto detect lables in legend

Multi Label Legend with parameters-

Multiple Labels with multiple handler   –

So far we have considered the single bar chart. Now we will see how can legend works in multiple visualization. As we were calling simply legend function , here we will provide handlers and labels in list format to them. Here handlers are necessary because without it it will be difficult to recognize the labels for each plot.

Here is the simple example to understand the concept.

import matplotlib.pyplot as plt
import numpy as np
x = np.array(["Div1", "Div2", "Div3", "Div4"])
y1 = np.array([30, 18, 21, 28])
y2 = np.array([40, 32, 29, 11])
X_axis = np.arange(len(x))
day_team_bar=plt.bar(X_axis - 0.2,y1,0.4)
night_team_bar=plt.bar(X_axis + 0.2,y2,0.4)
plt.xticks(X_axis, x)
plt.legend(handles = [day_team_bar, night_team_bar], 
           labels  = ['Day', 'Night'])
plt.show()

Lets see the output-

legend with multiple labels
legend with multiple labels

Passing Legends parameter with Labels without handler –

In the above visualization we passed two argument in the legend()  function. But we do not pass respective handler , it will work on position basis.

legend with multiple labels without handler
legend with multiple labels without handler

Multi Label Legend without parameters ( Auto Detect )-

As we have seen in the single label legend that we can declare the same without parameter too. While plotting we can set the labels  and legend function will auto detect the same at run time and we will not get this warning –  No handles with labels found to put in legend in Matplotlib .

multi legend without parameter
multi legend without parameter

 

Thanks 

Data Science Learner Team

 

Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for signup. A Confirmation Email has been sent to your Email Address.

Something went wrong.

Meet Abhishek ( Chief Editor) , a data scientist with major expertise in NLP and Text Analytics. He has worked on various projects involving text data and have been able to achieve great results. He is currently manages Datasciencelearner.com, where he and his team share knowledge and help others learn more about data science.
 
Thank you For sharing.We appreciate your support. Don't Forget to LIKE and FOLLOW our SITE to keep UPDATED with Data Science Learner