码迷,mamicode.com
首页 > 编程语言 > 详细

python 将数组中取某一值的元素全部替换为其他元素的方法

时间:2019-09-29 23:53:24      阅读:579      评论:0      收藏:0      [点我收藏+]

标签:方法   其他   reg   div   color   over   pytho   lan   数据   

这里的问题是在做House Price Prediction的时候遇到的,尝试对GarageArea做log转化,但是由于有些房子没有车库,所以GarageArea = 0,再通过log转化变成-inf了,所以我想把所有-inf的数据全部再转化为0,如题目所示。

除了循环还可以怎么做呢?看下面的代码

train_test[GarageArea] = np.log(train_test[GarageArea])

train_test[GarageArea] = train_test[GarageArea].replace(float("-inf"), 0)

本来以为replace()函数是str专用的函数,结果尝试发现在数组上也可以用,这里比较特殊的是-inf的写法,不能直接写成 -inf 或者 ‘-inf‘,而要写成 float("-inf")

python 将数组中取某一值的元素全部替换为其他元素的方法

标签:方法   其他   reg   div   color   over   pytho   lan   数据   

原文地址:https://www.cnblogs.com/RB26DETT/p/11610345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!