-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(python): Improved structure for
DataFrame
and LazyFrame
API …
…docs, misc design improvements (#5433)
- Loading branch information
1 parent
6e0bf88
commit 3450bc2
Showing
36 changed files
with
495 additions
and
356 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
=========== | ||
Aggregation | ||
=========== | ||
|
||
.. currentmodule:: polars | ||
.. autosummary:: | ||
:toctree: api/ | ||
|
||
DataFrame.max | ||
DataFrame.mean | ||
DataFrame.median | ||
DataFrame.min | ||
DataFrame.product | ||
DataFrame.quantile | ||
DataFrame.std | ||
DataFrame.sum | ||
DataFrame.var |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
========== | ||
Attributes | ||
========== | ||
|
||
.. currentmodule:: polars | ||
.. autosummary:: | ||
:toctree: api/ | ||
|
||
DataFrame.columns | ||
DataFrame.dtypes | ||
DataFrame.height | ||
DataFrame.schema | ||
DataFrame.shape | ||
DataFrame.width |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
=========== | ||
Computation | ||
=========== | ||
|
||
.. currentmodule:: polars | ||
.. autosummary:: | ||
:toctree: api/ | ||
|
||
DataFrame.fold | ||
DataFrame.hash_rows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
=========== | ||
Descriptive | ||
=========== | ||
|
||
.. currentmodule:: polars | ||
.. autosummary:: | ||
:toctree: api/ | ||
|
||
DataFrame.describe | ||
DataFrame.estimated_size | ||
DataFrame.is_duplicated | ||
DataFrame.is_empty | ||
DataFrame.is_unique | ||
DataFrame.n_chunks | ||
DataFrame.n_unique | ||
DataFrame.null_count |
Oops, something went wrong.