I have two dates column, and i need a thirdcolumn which gives the days(integer like 2,3) between first two columns.
I just implemented Date2-Date1 which gave me this output.
Date1 | Date2 | Days
2017-10-24 | 2017-10-25 | 1 days
2017-11-24 | 2017-11-29 | 4 days
Days column is of timedelta64[ns] type .
How to get rid of days keyword in Days column so that i get just an integer in Days column.