gpt4 book ai didi

python - 尝试对 Pandas 使用替换方法

转载 作者:行者123 更新时间:2023-12-04 03:39:01 26 4
gpt4 key购买 nike

我正在尝试用 pandas 做一个简单的替换:

from pandas import *
In [2]: df = DataFrame({1: [2,3,4], 2: [3,4,5]})

In [4]: df[2]
Out[4]:
0 3
1 4
2 5
Name: 2

In [5]: df[2].replace(4, 17)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
c:\Python27\<ipython-input-5-b4adce9e9b15> in <module>()
----> 1 df[2].replace(4, 17)

AttributeError: 'Series' object has no attribute 'replace'

我错过了什么?

最佳答案

replace方法在版本 0.9.0 中添加(参见 release notes )。

注意:您可以通过在 right-hand-side of the webpage 上选择该版本来检查文档中的 特定版本 pandas .但请考虑更新到最新的稳定版本。

关于python - 尝试对 Pandas 使用替换方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15618976/

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