df.were(),df.mask()

Posted liyun1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了df.were(),df.mask()相关的知识,希望对你有一定的参考价值。

df.where(cond,other...) df.mask()

df.where将series中不满足cond的那些值替换为other

df.mask()结果与where()相反

In [45]:
 df[‘loan_amnt‘].head(10).where(df[‘loan_amnt‘]<5000,5000)
 
 
Out[45]:
0    5000
1    2500
2    2400
3    5000
4    3000
5    5000
6    5000
7    3000
8    5000
9    5000
Name: loan_amnt, dtype: int64
In [46]:
 df[‘loan_amnt‘].head(10).mask(df[‘loan_amnt‘]<5000,5000)
 
 
Out[46]:
0     5000
1     5000
2     5000
3    10000
4     5000
5     5000
6     7000
7     5000
8     5600
9     5375
Name: loan_amnt, dtype: int64

以上是关于df.were(),df.mask()的主要内容,如果未能解决你的问题,请参考以下文章

AttributeError:数据集对象没有属性“c”FastAI

计算缺失数据的数据框的平均值

无线路由 mask 地址无效 怎么回事 如图

mask-rcnn代码解读:mask_iou的计算

实现文字色彩渐变(Mask)

OpenCV中mask的设置方法?