Computer Science, asked by scott9789, 1 year ago

How to drop particular row based on nan value in a particular row and column in a daaframe

Answers

Answered by hardikrakholiya21
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