📜  matplotlib.pyplot imshow size - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:02.956000             🧑  作者: Mango

代码示例1
from matplotlib import pyplot as plt

plt.figure(figsize = (20,2))
plt.imshow(random.rand(8, 90), interpolation='nearest')