matplotlib legend out of plot
ax.legend(loc='upper center', bbox_to_anchor=(0.5, 1.05),
ncol=3, fancybox=True, shadow=True)
matplotlib legend out of plot
ax.legend(loc='upper center', bbox_to_anchor=(0.5, 1.05),
ncol=3, fancybox=True, shadow=True)
ax.legend place legend outside plot
import numpy as np
import matplotlib.pyplot as plt
#Define arrays x, y1, y2, y3
fig = plt.figure()
ax = fig.add_axes((0.1,0.4,0.5,0.5))
ax.plot(x1,y1,linestyle='-',label='one')
ax.plot(x1,y2,linestyle='--',label='two')
ax.plot(x1,y3,linestyle='dotted',label='three')
ax.legend(bbox_to_anchor=(1.05,1.0),loc='best')
fig.savefig('Figure1.pdf')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us