gpt4 book ai didi

python-2.7 - 将 pandas 系列转换为 numpy 数组

转载 作者:行者123 更新时间:2023-12-02 23:57:33 24 4
gpt4 key购买 nike

我是 pandas 和 python 的新手。我的输入数据就像

category   text
1 hello iam fine. how are you
1 iam good. how are you doing.

inputData= pd.read_csv(Input', sep='\t', names=['category','text'])
X = inputData["text"]
Y = inputData["category"]

这里 Y 是 panda 系列对象,我想将其转换为 numpy 数组。所以我尝试了.as_matrix

YArray= Y.as_matrix(columns=None)
print YArray

但我得到的输出为 [1,1] (这是错误的,因为我只有一列类别和两行)。我想要结果为 2x1 矩阵。

最佳答案

要获取 numpy 数组,您需要

Y.values

关于python-2.7 - 将 pandas 系列转换为 numpy 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44238796/

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