-
Notifications
You must be signed in to change notification settings - Fork 2
Dask
BK Jackson edited this page Oct 12, 2019
·
19 revisions
ds_by_season = ds.groupby('time.season').mean('time')
t2m_range = abs(ds_by_season.sel(season='JJA') - ds_by_season.sel(season='DJF')).t2m
result = t2m_range.load()
Out-of-Core Dataframes in Python: Dask and OpenStreetMap - Jake VDP
Using Dask in Machine Learning: Best Practices - Jason Carpenter, 1/31/2019, ManifoldAI
How to handle large datasets in Python with Pandas and Dask
Math with Numpy & Dask - In this notebook we use numpy and dask to implement a linear function, numerical integration and an ordinary differential equation and we look at the corresponding dask graphs.