gpt4 book ai didi

python - NumPy 的/科学的 : How to re-construct an ndarray?

转载 作者:行者123 更新时间:2023-11-28 21:27:57 25 4
gpt4 key购买 nike

我正在研究分类问题。
我有一个形状为 (604329, 33)ndarray,其中有 32 个特征和一列标签:

>>> n_data.shape   
(604329, 33)

此 ndarray 的第三列是带有 01 的标签。
我需要将第三列移到最后一列,以便在需要切片时更容易处理。

问题:
有没有办法重建 ndarray,我们可以将第三列移动到最后一列?

最佳答案

以下将执行此操作:

x = np.hstack((x[:,:3],x[:,4:],x[:,3:4]))

其中 x 是您的 ndarray

关于python - NumPy 的/科学的 : How to re-construct an ndarray?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9382489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com