You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dask will also read only the required columns for your computation and skip the rest. This is useful when you want to manipulate a subset of the columns or for analytics:
110
+
Dask will also read only the required columns for your computation and skip the rest.
111
+
For example if you drop a column late in your code, it will not bother to load it early on in the pipeline if it's not needed.
112
+
This is useful when you want to manipulate a subset of the columns or for analytics:
111
113
112
114
```python
113
115
# Dask will download the 'dump' and 'token_count' needed
114
-
# for the computation and skip the other columns.
116
+
# for the filtering and computation and skip the other columns.
0 commit comments