In [2]:
import dask
In [1]:
from distributed import Client
In [3]:
client = Client()
In [7]:
client.close()
In [1]:
#client.scheduler_info()
In [4]:
import dask.dataframe as dd
In [3]:
%%time
df = dd.read_csv('../data/TgasSource_000-000-*.csv')
In [4]:
df.head()
Out[4]:
In [7]:
df.phot_g_mean_mag.mean().compute()
Out[7]: