I am using Pandas 0.18 and read_sas
to load a sas7bdat
dataset.
The dates in the Pandas dataframe appear as:
Out[56]:
0 19411.0
1 19325.0
2 19325.0
3 19443.0
4 19778.0
Name: sas_date, dtype: float64
pd.to_datetime
does not recognize this format. What should I do parse the date correctly?
Thanks!