ylim python
plt.ylim([a,b])
python matplotlib hist set axis range
# Basic syntax:
plt.ylim(min,max)
plt.xlim(min,max)
# Example usage:
import matplotlib.pyplot as plt
plt.plot(range(5))
plt.xlim(-5, 5)
plt.ylim(-5, 5)
# Note, this approach is more versatile than using range=[min,max] which
# only works in some plots, e.g. plt.hist(range(5), range=[-5,5])
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