加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python – 如何更改系列中int元素的值

发布时间:2020-12-20 11:05:19 所属栏目:Python 来源:网络整理
导读:我想只更改本系列中的int元素. 我想打印str值不变并打印所有int元素的平方值. 为什么不起作用? ser3=pd.Series([100,'bulya',300,'asya'],['tom','bob','cat','foot']) print(ser3) for i in ser3.iloc[[]]: if type(ser3.iloc[i]) == str: print (ser3.ilo
我想只更改本系列中的int元素.
我想打印str值不变并打印所有int元素的平方值.
为什么不起作用?

ser3=pd.Series([100,'bulya',300,'asya'],['tom','bob','cat','foot']) 
print(ser3) 
for i in ser3.iloc[[]]:
    if type(ser3.iloc[i]) == str:
        print (ser3.iloc[[i]])
    else:
        print (ser3.iloc[[i]]**2)

解决方法

您可以将pd.Series.apply与自定义函数一起使用.

ser3 = pd.Series([100,'foot'])

res = ser3.apply(lambda x: x**2 if isinstance(x,int) else x)

print(res)

tom     10000
bob     bulya
cat     90000
foot     asya
dtype: object

但是,在我看来,这是对熊猫的滥用.我建议您重新构建数据,以便数字数据保存在数字系列中.然后,您将能够以矢量化方式执行操作.

例如,要仅提取数字的方块,可以使用pd.to_numeric,后跟dropna:

res = pd.to_numeric(ser3,errors='coerce').dropna()**2

print(res)

tom    10000.0
cat    90000.0
dtype: float64

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读