picus
0
Q:

legend size matplotlib

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 20, 1000)
y1 = np.sin(x)
y2 = np.cos(x)

plt.plot(x, y1, "-b", label="sine")
plt.plot(x, y2, "-r", label="cosine")
plt.legend(loc="upper left")
plt.ylim(-1.5, 2.0)
plt.show()
1
plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})

1
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
1
  plt.xlabel("Time (s)", fontsize = 40)
0
ax.plot(randn(1000).cumsum(), 'k.', label='_nolegend_')
0
plt.figure(figsize=(14,7))
0

New to Communities?

Join the community