Answers for "plt.bar legend"

4

legend size matplotlib

plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})
Posted by: Guest on July-01-2020
0

python no label in legend matplot

ax.plot(randn(1000).cumsum(), 'k.', label='_nolegend_')
Posted by: Guest on May-08-2020
-1

python plt show legend

import numpy as np
import matplotlib.pyplot as plt

def example_legend():
    plt.clf()
    x = np.linspace(0, 1, 101)
    y1 = np.sin(x * np.pi / 2)
    y2 = np.cos(x * np.pi / 2)
    plt.plot(x, y1, label='sin')
    plt.plot(x, y2, label='cos')
    plt.legend()
Posted by: Guest on April-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language