gpt4 book ai didi

python - pandas:内部函数的错误参数(在 iterators.c 中)

转载 作者:行者123 更新时间:2023-12-01 05:14:43 25 4
gpt4 key购买 nike

为什么我会在这里收到错误?使用Python 2.6和pandas v.0.13.1

In [2]: df = pd.DataFrame({'x': [1, 1, 2, 2, 1, 1], 'y':[1, 2, 2, 2, 2, 1]})

In [3]: print pd.factorize(pd.lib.fast_zip([df.x, df.y]))[0]
---------------------------------------------------------------------------
SystemError Traceback (most recent call last)
<ipython-input-3-d98d985f2794> in <module>()
----> 1 print pd.factorize(pd.lib.fast_zip([df.x, df.y]))[0]

/usr/lib64/python2.6/site-packages/pandas/lib.so in pandas.lib.fast_zip (pandas/lib.c:8026)()

SystemError: numpy/core/src/multiarray/iterators.c:370: bad argument to internal function

最佳答案

您必须使用 df.x.valuesdf.y.values 来代替,才能访问 np.ndarray 对象pd.lib.fast_zip() 中需要:

print(pd.factorize(pd.lib.fast_zip([df.x.values, df.y.values]))[0])

关于python - pandas:内部函数的错误参数(在 iterators.c 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23434365/

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