Closed as not planned
Description
Bug summary
The plot generated from matplotlib.pyplot does not show automatically. Instead, I need to resize the window plot for it to show.
Code for reproduction
from matplotlib import pyplot as plt
import numpy as np
a = np.array([1, 7, 8, 12])
b = np.array([9, 6, 2, 5])
plt.figure(1, figsize=(8,4))
plt.axis([0,15,0,10])
plt.plot(a,b)
plt.show()
Actual outcome
Expected outcome
Additional information
No response
Operating system
macOS 13.3.1
Matplotlib Version
3.7.1
Matplotlib Backend
MacOSX
Python version
Python 3.11.3
Jupyter version
No response
Installation
None