import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
#解决jupyter notebook 内核挂掉问题
fig = plt.figure(1,(5,4), dpi = 250)
ax = plt.subplot(1,1,1)
plt.sac(ax)
plt.plot(data['index1'],data['index2'],label = 'feature1')
plt.plot(data['index3'],data['index4'],linestyle = '-.',label = 'feature2')
plt.legend()
plt.show()
python解决jupyter notebook 内核挂掉问题
最新推荐文章于 2025-02-21 18:03:44 发布