Python - ValueError: x and y must have same first dimension, but have shapes (7,) and (6,)

问题:ValueError: x and y must have same first dimension, but have shapes (7,) and (6,)

这是由于标签数量或者是数据、轴数量上不一致的问题,使用python的 print()方法输出 len() ,显示数据 data 变量、轴变量 angles 长度,或者是标签 labels 变量的长度,对它们进行长度匹配,适量的使用 减法,或者是代码运行顺序逻辑的处理。

比如labels 标签变量有可能会比数据 data 变量、 轴变量 angles 长度多 1 个,那就需要 len(labels) -1

你可能感兴趣的:(机器学习,数据分析,算法,python,开发语言,数据分析,机器学习)