Answers for "pandas take a slice of a dataframe on nan"

1

how to filter out all NaN values in pandas df

#return a subset of the dataframe where the column name value != NaN 
df.loc[df['column name'].isnull() == False]
Posted by: Guest on April-13-2021
2

pandas where retuning NaN

# Try using a loc instead of a where:
df_sub = df.loc[df.yourcolumn == 'yourvalue']
Posted by: Guest on April-08-2021

Code answers related to "pandas take a slice of a dataframe on nan"

Python Answers by Framework

Browse Popular Code Answers by Language