Skip to content

Commit

Permalink
docs: remove palmerpenguins from blogpost
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Oct 18, 2024
1 parent a0e6761 commit c6089f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/blog/introduction/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,13 @@ Here's a more advanced example, where each row of this palmer penguins data expa

```{python}
from reactable import Reactable, embed_css
from reactable.data import penguins
from htmltools import HTML, div
from palmerpenguins import load_penguins
embed_css()
penguins = load_penguins()
pl_penguins = pl.from_pandas(penguins)
pl_penguins = penguins.to_polars()
# Create a dictionary of all the nested tables ----
sub_tables = {
Expand Down

0 comments on commit c6089f5

Please sign in to comment.