how to fill in the NA values in a csv file python code example
Example 1: pandas fill na with value from another column
df['Cat1'].fillna(df['Cat2'])
Example 2: select columns to include in new dataframe in python
new = old.filter(['A','B','D'], axis=1)