Answers for "how to find range of y axis in matplotlib python"

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

Code answers related to "how to find range of y axis in matplotlib python"

Python Answers by Framework

Browse Popular Code Answers by Language