I have a numpy array that i want to add as a column in a existing dask dataframe.
enc = LabelEncoder()
nparr = enc.fit_transform(X[['url']])
I have ddf of type dask dataframe.
ddf['nurl'] = nparr ???
Any elegant way to achieve above please?
Python PANDAS: Converting from pandas/numpy to dask dataframe/array This does not solve my issue as i want numpy array into existing dask dataframe.