Suppose I have a set of dask arrays such as:
c1 = da.from_array(np.arange(100000, 190000), chunks=1000)
c2 = da.from_array(np.arange(200000, 290000), chunks=1000)
c3 = da.from_array(np.arange(300000, 390000), chunks=1000)
is it possible to create a dask dataframe from them? In pandas i could say:
data = {}
data['c1'] = c1
data['c2'] = c2
data['c3'] = c3
df = pd.DataFrame(data)
is there a similar way to do this with dask?