Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: reword backend counting to nearly 20 from 20+ #10533

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Ibis is the portable Python dataframe library:
- Lazy dataframe expressions
- Interactive mode for iterative data exploration
- [Compose Python dataframe and SQL code](#python--sql-better-together)
- Use the same dataframe API for [20+ backends](#backends)
- Use the same dataframe API for [nearly 20 backends](#backends)
- Iterate locally and deploy remotely by [changing a single line of code](#portability)

See the documentation on ["Why Ibis?"](https://ibis-project.org/why) to learn more.
Expand Down
2 changes: 1 addition & 1 deletion docs/how-to/extending/unbound_expression.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ con.table("results").to_pandas()

Because Ibis separates the transformation logic from the execution engine, you
can easily reuse the written transformation for another backend. Here we use
Polars as an example, but you can do the same for any of Ibis' 20+ supported
Polars as an example, but you can do the same for any of Ibis' nearly 20 supported
backends as long as that particular backend supports the operations
(see [the operation support matrix](../../backends/support/matrix.qmd)).

Expand Down
6 changes: 3 additions & 3 deletions docs/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ about:

### An open source dataframe library that works with any data system

- Use the same API for 20+ backends
- Use the same API for nearly 20 backends
- Fast local dataframes with embedded DuckDB (default), Polars, or DataFusion
- Iterate locally and deploy remotely by changing a single line of code
- Compose SQL and Python dataframe code, bridging the gap between data engineering and data science
Expand Down Expand Up @@ -90,9 +90,9 @@ grouped # <2>
1. Transform the table.
2. Display the transformed table.

### One API for 20+ backends
### One API for nearly 20 backends

Use the same dataframe API for 20+ backends:
Use the same dataframe API for nearly 20 backends:

```{python}
#| code-fold: true
Expand Down
4 changes: 2 additions & 2 deletions docs/why.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Why Ibis?"
---

Ibis defines a Python dataframe API that executes on any query engine -- the
frontend for any backend data platform, with 20+ backends today. This allows
frontend for any backend data platform, with nearly 20 backends today. This allows
Ibis to have excellent performance -- as good as the backend it is connected to
-- with a consistent user experience.

Expand Down Expand Up @@ -186,7 +186,7 @@ practitioners. It also allows organizations to:

Python developers creating libraries can use Ibis to:

- instantly support 20+ data backends
- instantly support nearly 20 data backends
- instantly support pandas, PyArrow, and Polars objects
- read and write from all common file formats (depending on the backend)
- trace column-level lineage through Ibis expressions
Expand Down