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