my DataFrame looks like that:
I found this but it didn´t work for me. Drop rows containing empty cells from a pandas DataFrame
i tried
df_model['Zustand'].replace("[]", np.nan, inplace=True)
df_model.dropna(subset=['Zustand'], inplace=True)
"[]" is dtype Object. I am not sure how to deal with it.
Greets Daniele