Answers for "matplotlib plot y axis range"

1

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])
Posted by: Guest on September-26-2020
0

set axis plt python

from matplotlib import pyplot as plt
plt.axis([0, 10, 0, 20])
Posted by: Guest on November-28-2020

Code answers related to "matplotlib plot y axis range"

Python Answers by Framework

Browse Popular Code Answers by Language