I have a pandas' dataframe with a column that is of datatype: datetime64[ns].
How do I convert the whole series to a Python's Datetime.datetime objects? On the individual object there is a function called to_datetime(), but I can't call this function on the series.
Thank you
numpy arrayof dates bydf.Date.dt.to_pydatetime()df.Date = df.Date.dt.to_pydatetime()still returnDate datetime64[ns]