Jupyter笔记本电脑电池卡在[*]上,跑了两次然后停止工作

时间:2019-04-22 22:21:33

标签: python jupyter

我正在尝试在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

我尝试重置笔记本电脑,没有用。

0 个答案:

没有答案