Skip to content

Commit 081276e

Browse files
committed
Fixed some typos and missing references.
1 parent 4d8fec4 commit 081276e

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

content/tabular-data.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
- Learn how to manipulate dataframes in Pandas
1414
- Lazy and eager dataframes in Polars
15-
- Learn how to abstract the underlying libraries away with Narwhals
1615

1716
:::
1817

@@ -393,7 +392,6 @@ df["VendorID"] # A more Polars-y idiom is to use df.select(["VendorID"])
393392
```
394393

395394
:::{exercise} Output
396-
397395
:class: dropdown
398396

399397
```
@@ -457,8 +455,13 @@ workflow, where the following happens:
457455
- Combining: assembling a dataframe (of potentially any size) with the results.
458456

459457
This is type of workflow is represented below.
458+
459+
:::{figure-md}
460460
![split-apply-combine](groupby.png)
461461

462+
Source: [Earth and environmental data science](https://earth-env-data-science.github.io/intro.html)
463+
:::
464+
462465
As an example, let us try to to compute the total fare for each hour, split
463466
by payment type.
464467

0 commit comments

Comments
 (0)