Skip to content

Commit 52b5353

Browse files
authored
docs: reword backend counting to nearly 20 from 20+ (#10533)
## Description of changes Back in #10259, I adjusted the messaging around the backend count in the README to represent the changes after removing the pandas and Dask backends. This PR applies this fix in more locations. I did not adjust any presentations or previous blog posts, as the count was correct then.
1 parent d832de1 commit 52b5353

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Ibis is the portable Python dataframe library:
1616
- Lazy dataframe expressions
1717
- Interactive mode for iterative data exploration
1818
- [Compose Python dataframe and SQL code](#python--sql-better-together)
19-
- Use the same dataframe API for [20+ backends](#backends)
19+
- Use the same dataframe API for [nearly 20 backends](#backends)
2020
- Iterate locally and deploy remotely by [changing a single line of code](#portability)
2121

2222
See the documentation on ["Why Ibis?"](https://ibis-project.org/why) to learn more.

docs/how-to/extending/unbound_expression.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ con.table("results").to_pandas()
107107

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

docs/index.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ about:
4646

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

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

93-
### One API for 20+ backends
93+
### One API for nearly 20 backends
9494

95-
Use the same dataframe API for 20+ backends:
95+
Use the same dataframe API for nearly 20 backends:
9696

9797
```{python}
9898
#| code-fold: true

docs/why.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Why Ibis?"
33
---
44

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

@@ -186,7 +186,7 @@ practitioners. It also allows organizations to:
186186

187187
Python developers creating libraries can use Ibis to:
188188

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

0 commit comments

Comments
 (0)