I have a dataset, df, that has several columns where I would like to pinpoint and extract where the value is a certain length (if it exceeds 10 characters) and to remove this row
data
ID type
abccccc 22
aaaaaaaaaaa 22
b 11
desired
ID type
abccccc 22
b 11
doing
df.drop(df.index[df['ID'] == >10
I am still researching this, any assistance is appreciated