How to align rows in a Matplotlib legend with 2 columns?


To align rows in a matplotlib legend with 2 columns, we can take the following steps

  • Set the figure size and adjust the padding between and around the subplots.
  • Using plot() method, plot lines with the labels line1, line2 and line3.
  • Place a legend on the figure with two columns. Use ncol=2.
  • To display the figure, use show() method.

Example

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
plt.plot([1, 2, 3], label="line1")
plt.plot([3, 2, 1], label="line2")
plt.plot([2, 3, 1], label="line3")
plt.legend(ncol=2, loc="upper right")
plt.show()

Output

Updated on: 01-Jun-2021

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements