result = X_train.join(y_train) result.head()AttributeError Traceback (most recent call last) <ipython-input-32-957a4f0008b1> in <module> ----> 1 result = X_train.join(y_train) 2 result.head() AttributeError: 'numpy.ndarray' object has no attribute 'join'
时间: 2023-05-21 19:04:04 浏览: 172
iomap_32.rar_For Real_uc/CAN
这个错误是因为 numpy.ndarray 对象没有 join() 方法。如果你想将 X_train 和 y_train 拼接在一起,可以使用 numpy.concatenate() 方法。例如:result = numpy.concatenate((X_train, y_train), axis=1)。然后,你可以使用 result.head() 方法查看结果的前几行。
阅读全文