I have an unparsed column in a dask dataframe (df) that I am using pandas to convert to datetime and put into a new column in the dask dataframe. However it breaks as column assignment doesn't support type DatetimeIndex.
df['New Column'] = pd.to_datetime(np.array(df.index.values), format='%Y/%m/%d %H:%M')