AttributeError: 'kriging' object has no attribute 'testPoints'
时间: 2023-10-05 17:06:48 浏览: 55
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误是因为你试图访问一个名为 'testPoints' 的属性,但是 'kriging' 对象并没有这个属性。
可能的原因是:
1. 你的 'kriging' 对象没有被正确初始化,导致缺少该属性。
2. 'testPoints' 属性可能存在拼写错误或者是误用了其他名字。
你可以检查一下代码,确保在访问 'testPoints' 属性之前, 'kriging' 对象已经被正确初始化,并且该属性确实存在。
阅读全文