python select columns with no na

Solutions on MaxInterview for python select columns with no na by the best coders in the world

showing results for - "python select columns with no na"
Alex
05 Feb 2017
1df = df[df.columns[~df.isnull().all()]]