但是运行后报错raise Exception("X and Y arrays must be the same shape--got %s and %s." % (self.xData.shape, self.yData.shape)) Exception: X and Y arrays must be the same shape--got (167,) and (50,).
时间: 2024-03-28 07:36:46 浏览: 341
java 源码分析Arrays.asList方法详解
根据你提供的代码,这个错误可能是由于self.xData和self.yData的形状不一致导致的。在你的代码中,没有展示self.xData和self.yData的定义和赋值。你可以检查一下你的代码,确保self.xData和self.yData的形状是相同的。如果你仍然无法解决问题,建议你提供更多相关代码,以便更好地理解问题所在。
阅读全文