Skip to content

Commit

Permalink
docs: missed a palmerpenguins import
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Oct 18, 2024
1 parent 9f7fd17 commit 08810dd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/get-started/controls-filtering.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ title: Filtering

```{python}
from reactable import Reactable, Column, JS, embed_css
from reactable.data import cars_93
from reactable.data import cars_93, penguins
from palmerpenguins import load_penguins
import polars as pl
embed_css()
penguins = load_penguins()
pl_penguins = pl.from_pandas(penguins)
pl_penguins = penguins.to_polars()
cars = cars_93[:20, ["manufacturer", "model", "type", "air_bags", "price"]]
```
Expand Down

0 comments on commit 08810dd

Please sign in to comment.