np.where多条件可以加维度条件吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了np.where多条件可以加维度条件吗相关的知识,希望对你有一定的参考价值。
参考技术A
可以。多条件时condition,&表示与,|表示或。同时满足两个条件时,可以用&符号,意思是"与"。\'|‘表示"或者",可以和’&\'联合起来使用。
python 条件 - loc和np.where
df.loc[(~df.col1.isnull()) & (~df.col2.isnull())]
df.loc[~df['Actual Days to Complete'].notnull(), 'Cases Metric Met'] = df['Actual Days to Complete']
df['Cases Metric Met'] = np.where((df['Actual Days to Complete']<= df['Metric (Days)']),1 ,0)
df.loc[(df['Component'] == 'USSS') & (df['New Hire Series']== 1811), 'PMCO'] = 'USSS Special Agent- 1811'
elastic.loc[~elastic['dl_comp_acr'].isnull(), 'org'] = elastic['dl_comp_acr']#where dl_comp_acr isnt null org is dl_comp_acr
eventcat.loc[(eventcat['idaction_event_category_name'] == 'download all') | (eventcat['idaction_event_category_name']== 'download selected'), 'type'] = 'downloadlog'
以上是关于np.where多条件可以加维度条件吗的主要内容,如果未能解决你的问题,请参考以下文章
python 条件 - loc和np.where
Pandas:np.where 在数据帧上有多个条件
在 np.where 条件下使用 pandas 可为空的整数 dtype
用mongodb的mapreduce可以加两个条件吗
drools when写条件判断时能加循环吗?我有多个条件要进行判断,而且条件的数量未知。
熊猫是否具有多个条件?