I am studying a dataset for the NBA games, and I need to know how I can remove data from the dataframe that is found as "None". Because they keep me from getting the exact amount of athletes.
Below is my dataset:
1 answer
3
You can return those that have no missing values this way:
df[~df.isnull()]
~ serves to deny, ie is null turns into a kind of not null.