File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ stored them in attributes `self.means` and `self.std_devs`.
16
16
## Transform method
17
17
18
18
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:
21
21
- ` DataFrame.col `
22
22
- ` DataFrame.assign `
23
23
3 . return the original (non-standard-compliant) dataframe to the user by calling
Original file line number Diff line number Diff line change 2
2
3
3
To write a dataframe-agnostic function, the steps you'll want to follow are:
4
4
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 )
7
7
You may want to look at the [ official examples] ( https://github.com/data-apis/dataframe-api/tree/main/spec/API_specification/examples )
8
8
for inspiration.
9
9
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:
46
46
- For pandas, the output is a ` pandas.DataFrame ` .
47
47
- But for Polars, the output is a ` polars.LazyFrame ` .
48
48
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,
50
50
all operations are done lazily in order to make full use of Polars' query engine.
51
51
If you want to convert that to a ` polars.DataFrame ` , it is the caller's responsibility
52
52
to call ` .collect ` . Check the modified example below:
Original file line number Diff line number Diff line change 1
1
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
3
3
nav :
4
4
- Home : index.md
5
5
- Installation : installation.md
You can’t perform that action at this time.
0 commit comments