How can i get the count of total non empty elements in a pandas column?
print(len(newDF.Paid_Off_In_Days).where(newDF.Paid_Off_In_Days != ''))
Data type is int
I get error:
AttributeError: 'int' object has no attribute 'where'
Paid_Off_In_Days Credit_Amount
1 150
15 500
80
18 90
1200
29 600