for i in df.columns:
if df[i].dtype=='object' and df[i].nunique()>20:
df=df.drop(columns=[i],axis=1)
The above for loop works as expected, but when i put this under a def function it doesn't work, for example- data= Churn_Modelling, the above for loop was able to drop "Surname" but the below def function drop_object_nunique(df) doesn't removes "Surname"
def drop_object_nunique(data):
for i in data.columns:
if data[i].dtype=='object' and data[i].nunique()>20:
data=data.drop(columns=[i],axis=1)