Skip to content

Commit

Permalink
dev: add palmerpenguins dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Jun 28, 2024
1 parent fe4b35a commit bffbbf7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/examples/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ from bigblock.models import (
)
from bigblock.data import cars_93, co2, prices, sleep, starwars, us_states, us_expenditures
from bigblock import tags
from plotnine.data import penguins
from palmerpenguins import load_penguins
import polars as pl
embed_css()
pl_penguins = pl.from_pandas(penguins).with_columns(pl.col(pl.Categorical()).cast(pl.String))
penguins = load_penguins()
pl_penguins = pl.from_pandas(penguins)
```

## Basic usage
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ dependencies = [
"IPython",
"importlib-metadata",
"importlib-resources",
"palmerpenguins",
"typing_extensions>=3.10.0.0",
]
requires-python = ">=3.9"
Expand Down

0 comments on commit bffbbf7

Please sign in to comment.