How to drop particular row based on nan value in a particular row and column in a daaframe
Answers
Answered by
0
Explanation:
➡️ Solution to this specific question as opposed to the general description from Aman (which was wonderful) and in case anyone else happens upon this:
import pandas as pd
df = df[pd.notnull(df['EPS'])]
Similar questions