假设您需要将figure
and存储subplot
在变量中(以便以后修改属性)。你怎样才能让整个数字停留在几毫秒后不会很快消失?
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(2,2,1)
ax.plot(1)
fig.show()
假设您需要将figure
and存储subplot
在变量中(以便以后修改属性)。你怎样才能让整个数字停留在几毫秒后不会很快消失?
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(2,2,1)
ax.plot(1)
fig.show()