This application has requested the Runtime to terminate it in an unusual way. Please contact the app
生活随笔
收集整理的這篇文章主要介紹了
This application has requested the Runtime to terminate it in an unusual way. Please contact the app
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在做機器學習實戰第九章的實驗,使用Tkinter和matplotlib繪制回歸樹和模型樹時,代碼沒有問題但是拋出了如下錯誤
ValueError: Masked arrays must be 1-D
Fatal Python error: PyEval_RestoreThread: NULL tstateThis application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
在網上找了很久也沒找到答案,最后發現是scatter語句出現了問題:
原來的scatter語句:
reDraw.a.scatter(reDraw.rawDat[:,0], reDraw.rawDat[:,1], s=5) 應改為: reDraw.a.scatter([reDraw.rawDat[:,0]], [reDraw.rawDat[:,1]], s=5)不懂得可以自己打印一下reDraw.rawDat[:,0]和reDraw.rawDat[:,1]看一看
總結
以上是生活随笔為你收集整理的This application has requested the Runtime to terminate it in an unusual way. Please contact the app的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: numpy常用函数(power、sum、
- 下一篇: 新手也能看懂的 SpringBoot 异