I have a dataframe with a column "A" and the data type of this column is object. I want to remove all rows from the dataframe that have empty cells in the column A. What I have tried so far:
df.dropna(axis=1, subset=["A"])
I have a dataframe with a column "A" and the data type of this column is object. I want to remove all rows from the dataframe that have empty cells in the column A. What I have tried so far:
df.dropna(axis=1, subset=["A"])