Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ jobs:
uses: actions/checkout@v2

- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
mamba-version: "*"
environment-file: binder/environment.yml
activate-environment: dask-tutorial
Expand Down
6 changes: 3 additions & 3 deletions 00_overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"outputs": [],
"source": [
"ddf = dd.read_parquet(\n",
" \"s3://dask-data/nyc-taxi/nyc-2015.parquet/part.*.parquet\",\n",
" columns=[\"passenger_count\", \"tip_amount\"],\n",
" \"s3://coiled-data/uber/\",\n",
" columns=[\"tips\"],\n",
" storage_options={\"anon\": True},\n",
")"
]
Expand All @@ -65,7 +65,7 @@
"metadata": {},
"outputs": [],
"source": [
"result = ddf.groupby(\"passenger_count\").tip_amount.mean().compute()\n",
"result = ddf[\"tips\"][ddf[\"tips\"] > 0].mean().compute()\n",
"result"
]
},
Expand Down
1 change: 1 addition & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies:
- dask=2023.1.0
- dask-labextension
- distributed=2023.1.0
- cryptography
- matplotlib
- pandas=1.5
- pip
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down Expand Up @@ -104,7 +104,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
html_static_path = []

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down
Loading