我正在尝试在Jupyter笔记本单元中运行以下代码段。我感到奇怪的是,我能够输出两次图形,然后突然之间,无需对代码进行任何更改,运行单元格只会产生[*]而没有输出。
import numpy as np
import matplotlib.pyplot as plt
greyhounds = 500
labs = 500
# Average height of dog +/- 4 inches
grey_height = 28 + 4 * np.random.randn(greyhounds)
lab_height = 24 + 4 * np.random.randn(labs)
# greyHounds=red & labs=blue
plt.hist([grey_height, lab_height], stacked=True, color=['r','b'])
plt.show()
! python
我尝试重置笔记本电脑,没有用。