ValueError: view limit minimum -36919.1 is less than 1 and is an invalid Matplotlib date value.问题解决

在用jupyter写深度学习作业时,用python作图时报这个错。

ValueError: view limit minimum -36919.1 is less than 1 and is an invalid Matplotlib date value. This often happens if you pass a non-datetime value to an axis that has datetime unit

这个错是在用seaborn画图出现的,同时伴随着上边某一个用matplotlib作的图没有出现没有生成图片。

只出现了这个信息

原因可能是这几行代码是别人的ipynb文件里编辑的。

所以需要在画图前添加一行代码如下即可解决。

%matplotlib inline

这样添加以后,两个图都能正常呈现,均没有报错。具体原因希望有人能搞搞清楚给大伙解答一下。

你可能感兴趣的:(python,python,人工智能,jupyter,visual,studio,code,贴图)