Skip to content

Commit

Permalink
docs(blog-axis-labels): set correct y axis in plot in Ibis benchmark …
Browse files Browse the repository at this point in the history
…blog post (#9445)

Co-authored-by: Cody <[email protected]>
  • Loading branch information
szarnyasg and lostmygithubaccount authored Jun 26, 2024
1 parent 070f6a3 commit fce5bd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/_freeze/posts/ibis-bench/index/execute-results/html.json

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions docs/posts/ibis-bench/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,9 @@ c = px.bar(
t.group_by("system").agg(
total_seconds=t["execution_seconds"].sum(),
seconds_per_query=t["execution_seconds"].mean(),
num_records=t.count(),
),
x="system",
y="num_records",
y="total_seconds",
color="system",
category_orders={"system": systems},
title="total execution time by system",
Expand Down Expand Up @@ -938,10 +937,10 @@ engines. Polars is an OLAP query engine with a Python dataframe API that can be
used as a more performant alternative to pandas.

All three make great Ibis backends and you can switch between them in a single
line of code. This let's you write your code once and run it on the engine
that's best for your use case. If a better engine comes along you'll likely be
able to use that too. And you can scale up and out across the 20+ backends Ibis
supports as needed.
line of code. This lets you write your code once and run it on the engine that's
best for your use case. If a better engine comes along you'll likely be able to
use that too. And you can scale up and out across the 20+ backends Ibis supports
as needed.

TPC-H is a decent benchmark *for what it benchmarks, which is limited*. We're
not running window functions, doing timeseries analysis, or feature engineering
Expand Down

0 comments on commit fce5bd3

Please sign in to comment.