Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Restore API complentess page #1788

Merged
merged 11 commits into from
Jan 11, 2025
9 changes: 9 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,16 @@ nav:
- Supported DataFrame methods: api-completeness/dataframe.md
- Supported LazyFrame methods: api-completeness/lazyframe.md
- Supported Expr methods: api-completeness/expr.md
- Supported Expr.cat methods: api-completeness/expr_cat.md
- Supported Expr.dt methods: api-completeness/expr_dt.md
- Supported Expr.list methods: api-completeness/expr_list.md
- Supported Expr.name methods: api-completeness/expr_name.md
- Supported Expr.str methods: api-completeness/expr_str.md
- Supported Series methods: api-completeness/series.md
- Supported Series.cat methods: api-completeness/series_cat.md
- Supported Series.dt methods: api-completeness/series_dt.md
- Supported Series.list methods: api-completeness/series_list.md
- Supported Series.str methods: api-completeness/series_str.md
- API Reference:
- api-reference/index.md
- api-reference/narwhals.md
Expand Down
36 changes: 18 additions & 18 deletions narwhals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,35 +34,35 @@
from narwhals.dtypes import UInt128
from narwhals.dtypes import Unknown
from narwhals.expr import Expr
from narwhals.expr import all_ as all
from narwhals.expr import all_horizontal
from narwhals.expr import any_horizontal
from narwhals.expr import col
from narwhals.expr import concat_str
from narwhals.expr import len_ as len
from narwhals.expr import lit
from narwhals.expr import max
from narwhals.expr import max_horizontal
from narwhals.expr import mean
from narwhals.expr import mean_horizontal
from narwhals.expr import median
from narwhals.expr import min
from narwhals.expr import min_horizontal
from narwhals.expr import nth
from narwhals.expr import sum
from narwhals.expr import sum_horizontal
from narwhals.expr import when
from narwhals.functions import all_ as all
from narwhals.functions import all_horizontal
from narwhals.functions import any_horizontal
from narwhals.functions import col
from narwhals.functions import concat
from narwhals.functions import concat_str
from narwhals.functions import from_arrow
from narwhals.functions import from_dict
from narwhals.functions import from_numpy
from narwhals.functions import get_level
from narwhals.functions import len_ as len
from narwhals.functions import lit
from narwhals.functions import max
from narwhals.functions import max_horizontal
from narwhals.functions import mean
from narwhals.functions import mean_horizontal
from narwhals.functions import median
from narwhals.functions import min
from narwhals.functions import min_horizontal
from narwhals.functions import new_series
from narwhals.functions import nth
from narwhals.functions import read_csv
from narwhals.functions import read_parquet
from narwhals.functions import scan_csv
from narwhals.functions import scan_parquet
from narwhals.functions import show_versions
from narwhals.functions import sum
from narwhals.functions import sum_horizontal
from narwhals.functions import when
from narwhals.schema import Schema
from narwhals.series import Series
from narwhals.translate import from_native
Expand Down
Loading
Loading