Answers for "python matplotlib limit y axis"

2

set axis limits matplotlib

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

limit axis matplotlib

plt.xlim(0, 100)
Posted by: Guest on April-27-2020
0

matplotlib set axis limits

import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
fig.set_size_inches(8, 8)
ax = fig.add_axes([0.15,0.2,0.7,0.7]) 

x = np.arange(0, 100, 0.1)
y = np.sin(x)

ax.plot(x,y, color='blue', label='Sine wave')

#Set axis limits
ax.set_xlim([25, 50])
ax.set_ylim([-1, 1])

plt.show()
Posted by: Guest on May-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language