Answers for "python check null values in dataframe column"

2

show rows with a null value pandas

df1 = df[df.isna().any(axis=1)]
Posted by: Guest on March-19-2021
0

python if column is null then

df['real_lastName'] = np.where(df['LastName'].isnull(), df['Middle'], df['LastName'] )

print (df)
  FirstName Middle LastName real_lastName
0       Tom     Ju      NaN            Ju
1      Kity    NaN      Rob           Rob
Posted by: Guest on June-30-2020

Code answers related to "python check null values in dataframe column"

Python Answers by Framework

Browse Popular Code Answers by Language