Answers for "matplotlib set y axis range"

2

set axis limits matplotlib

axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
Posted by: Guest on March-09-2020
2

ylim python

plt.ylim([a,b])
Posted by: Guest on March-20-2020
1

how to set axis range matplotlib

# For a given y=time-dependent variable, x=time
fig, ax = plt.subplots(figsize=(12, 6))

ax.plot(y, label='y')
#'lower' is lower limit of the range you wanna set
#'upper' is upper limit of the range you wanna set
plt.xlim(lower, upper)
Posted by: Guest on March-09-2021
0

set axis plt python

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

Python Answers by Framework

Browse Popular Code Answers by Language