简体   繁体   中英

Python - Pandas - Dataframe How to add notnull to a column when using .count

I am creating a new column that will count all ids but exclude a few rows of customers where the customer's ID has a certain prefix and has no repeat orders

df['newcolumn'] = df[(df.notnull['Date']) & (df['ID'].str.contains('prefix')) & (df['Repeat order'] == 'No')].groupby(['ID'], as_index=False).count()

I am getting below error

TypeError: 'method' object is not subscriptable

Still no difference when I replaced [] with () to resolve above error

change

df.notnull['Date']

to

df['Date'].notnull()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM