I have a pandas dataframe like this:
index   integer_2_x  integer_2_y
0        49348          NaN
1        26005          NaN
2            5          NaN
3          NaN           26
4        26129          NaN
5          129          NaN
6          NaN           26
7          NaN           17
8        60657          NaN
9        17031          NaN
I want to make a third column that looks like this by taking the numeric value in the first and the second and eliminating the NaN.  How do I do this?
index   integer_2_z
0        49348
1        26005
2            5
3           26
4        26129
5          129
6           26
7           17
8        60657
9        17031
 
     
     
     
    