Skip to content

Commit

Permalink
docs(altair): remove to_pandas from altair example (#8951)
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored Apr 12, 2024
1 parent 261a544 commit eecbcea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/how-to/visualization/altair.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ in Ibis tables or expressions:
import altair as alt
chart = (
alt.Chart(t.group_by("species").agg(count=ibis._.count()).to_pandas())
alt.Chart(t.group_by("species").agg(count=ibis._.count()))
.mark_bar()
.encode(
x="species",
Expand Down

0 comments on commit eecbcea

Please sign in to comment.