Skip to content

Commit 1c26adb

Browse files
committed
correct repo url
1 parent 70cf7a8 commit 1c26adb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/basics/complete_example.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ stored them in attributes `self.means` and `self.std_devs`.
1616
## Transform method
1717

1818
The general strategy will be:
19-
1. opt-in to the DataFrame API Standard by calling `__dataframe_consortium_standard__`;
20-
2. calculate new columns using methods from the DataFrame API Standard:
19+
1. opt-in to the Dataframe API Standard by calling `__dataframe_consortium_standard__`;
20+
2. calculate new columns using methods from the Dataframe API Standard:
2121
- `DataFrame.col`
2222
- `DataFrame.assign`
2323
3. return the original (non-standard-compliant) dataframe to the user by calling

docs/basics/dataframe.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
To write a dataframe-agnostic function, the steps you'll want to follow are:
44

5-
1. Opt-in to the DataFrame API by calling `__dataframe_consortium_standard__` on your dataframe.
6-
2. Express your logic using methods from the [DataFrame API](https://data-apis.org/dataframe-api/draft/API_specification/index.html)
5+
1. Opt-in to the Dataframe API by calling `__dataframe_consortium_standard__` on your dataframe.
6+
2. Express your logic using methods from the [Dataframe API](https://data-apis.org/dataframe-api/draft/API_specification/index.html)
77
You may want to look at the [official examples](https://github.com/data-apis/dataframe-api/tree/main/spec/API_specification/examples)
88
for inspiration.
99
3. If you need to return a dataframe to the user in its original library, call `DataFrame.dataframe`.
@@ -46,7 +46,7 @@ If you look at the two outputs, you'll see that:
4646
- For pandas, the output is a `pandas.DataFrame`.
4747
- But for Polars, the output is a `polars.LazyFrame`.
4848

49-
This is because the DataFrame API only has a single `DataFrame` class - so for Polars,
49+
This is because the Dataframe API only has a single `DataFrame` class - so for Polars,
5050
all operations are done lazily in order to make full use of Polars' query engine.
5151
If you want to convert that to a `polars.DataFrame`, it is the caller's responsibility
5252
to call `.collect`. Check the modified example below:

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: Dataframe API Compat
2-
repo_url: https://github.com/squidfunk/mkdocs-material
2+
repo_url: https://github.com/data-apis/dataframe-api-compat.git
33
nav:
44
- Home: index.md
55
- Installation: installation.md

0 commit comments

Comments
 (0)