Skip to content

Commit

Permalink
move up one level
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Jul 20, 2024
1 parent 18b2fd6 commit 3303f1a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ In the following table it is possible to check which method is implemented for w
| Expr | max | :white_check_mark: | :white_check_mark: |
| Expr | mean | :white_check_mark: | :white_check_mark: |
| Expr | min | :white_check_mark: | :white_check_mark: |
| Expr | n_unique | :white_check_mark: | :x: |
| Expr | n_unique | :white_check_mark: | :white_check_mark: |
| Expr | null_count | :white_check_mark: | :white_check_mark: |
| Expr | over | :white_check_mark: | :x: |
| Expr | quantile | :white_check_mark: | :x: |
Expand Down Expand Up @@ -158,7 +158,7 @@ In the following table it is possible to check which method is implemented for w
| Series | max | :white_check_mark: | :white_check_mark: |
| Series | mean | :white_check_mark: | :white_check_mark: |
| Series | min | :white_check_mark: | :white_check_mark: |
| Series | n_unique | :white_check_mark: | :x: |
| Series | n_unique | :white_check_mark: | :white_check_mark: |
| Series | name | :white_check_mark: | :white_check_mark: |
| Series | null_count | :white_check_mark: | :white_check_mark: |
| Series | quantile | :white_check_mark: | :x: |
Expand Down
2 changes: 1 addition & 1 deletion docs/extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Alternatively, if you can't do that (for example, if you library is closed-sourc
the next section for what else you can do.

To check which methods are supported for which backend in depth, please refer to the
[API completeness page](api-reference/api-completeness.md).
[API completeness page](api-completeness.md).

## Extending Narwhals

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ nav:
- how_it_works.md
- Roadmap: roadmap.md
- Related projects: related.md
- API Completeness: api-completeness.md
- API Reference:
- api-reference/narwhals.md
- api-reference/dataframe.md
Expand All @@ -39,7 +40,6 @@ nav:
- api-reference/index.md
- api-reference/selectors.md
- api-reference/typing.md
- api-reference/api-completeness.md
theme:
name: material
font: false
Expand Down
2 changes: 1 addition & 1 deletion utils/generate_backend_completeness.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from jinja2 import Template

TEMPLATE_PATH: Final[Path] = Path("utils") / "api-completeness.md.jinja"
DESTINATION_PATH: Final[Path] = Path("docs") / "api-reference" / "api-completeness.md"
DESTINATION_PATH: Final[Path] = Path("docs") / "api-completeness.md"


MODULES = ["dataframe", "series", "expression"]
Expand Down

0 comments on commit 3303f1a

Please sign in to comment.