-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #191 from narwhals-dev/by-dtype
add By dtype selector (flixbus PR)
- Loading branch information
Showing
7 changed files
with
185 additions
and
2 deletions.
There are no files selected for viewing
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,11 @@ | ||
# `narwhals.selectors` | ||
|
||
::: narwhals.selectors | ||
handler: python | ||
options: | ||
members: | ||
- by_dtype | ||
- numeric | ||
show_root_heading: false | ||
show_source: false | ||
show_bases: false |
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 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,28 @@ | ||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
from narwhals._pandas_like.expr import PandasExpr | ||
|
||
if TYPE_CHECKING: | ||
from narwhals._pandas_like.dataframe import PandasDataFrame | ||
from narwhals._pandas_like.series import PandasSeries | ||
from narwhals.dtypes import DType | ||
|
||
|
||
class PandasSelector: | ||
def __init__(self, implementation: str) -> None: | ||
self._implementation = implementation | ||
|
||
def by_dtype(self, dtypes: list[DType]) -> PandasExpr: | ||
def func(df: PandasDataFrame) -> list[PandasSeries]: | ||
return [df[col] for col in df.columns if df.schema[col] in dtypes] | ||
|
||
return PandasExpr( | ||
func, | ||
depth=0, | ||
function_name="type_selector", | ||
root_names=None, | ||
output_names=None, | ||
implementation=self._implementation, | ||
) |
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,110 @@ | ||
from __future__ import annotations | ||
|
||
from typing import Any | ||
|
||
from narwhals import dtypes | ||
from narwhals.dtypes import translate_dtype | ||
from narwhals.expression import Expr | ||
from narwhals.utils import flatten | ||
|
||
|
||
def by_dtype(*dtypes: Any) -> Expr: | ||
""" | ||
Select columns based on their dtype. | ||
Arguments: | ||
dtypes: one or data types to select | ||
Examples: | ||
>>> import narwhals as nw | ||
>>> import narwhals.selectors as ncs | ||
>>> import pandas as pd | ||
>>> import polars as pl | ||
>>> | ||
>>> data = {'a': [1, 2], 'b': ['x', 'y'], 'c': [4.1, 2.3]} | ||
>>> df_pd = pd.DataFrame(data) | ||
>>> df_pl = pl.DataFrame(data) | ||
Let's define a dataframe-agnostic function to select int64 and float64 | ||
dtypes and multiplies each value by 2: | ||
>>> def func(df_any): | ||
... df = nw.from_native(df_any) | ||
... df = df.select(ncs.by_dtype(nw.Int64, nw.Float64)*2) | ||
... return nw.to_native(df) | ||
We can then pass either pandas or Polars dataframes: | ||
>>> func(df_pd) | ||
a c | ||
0 2 8.2 | ||
1 4 4.6 | ||
>>> func(df_pl) | ||
shape: (2, 2) | ||
┌─────┬─────┐ | ||
│ a ┆ c │ | ||
│ --- ┆ --- │ | ||
│ i64 ┆ f64 │ | ||
╞═════╪═════╡ | ||
│ 2 ┆ 8.2 │ | ||
│ 4 ┆ 4.6 │ | ||
└─────┴─────┘ | ||
""" | ||
return Expr( | ||
lambda plx: plx.selectors.by_dtype( | ||
[translate_dtype(plx, dtype) for dtype in flatten(dtypes)] | ||
) | ||
) | ||
|
||
|
||
def numeric() -> Expr: | ||
""" | ||
Select numeric columns. | ||
Examples: | ||
>>> import narwhals as nw | ||
>>> import narwhals.selectors as ncs | ||
>>> import pandas as pd | ||
>>> import polars as pl | ||
>>> | ||
>>> data = {'a': [1, 2], 'b': ['x', 'y'], 'c': [4.1, 2.3]} | ||
>>> df_pd = pd.DataFrame(data) | ||
>>> df_pl = pl.DataFrame(data) | ||
Let's define a dataframe-agnostic function to select numeric | ||
dtypes and multiplies each value by 2: | ||
>>> def func(df_any): | ||
... df = nw.from_native(df_any) | ||
... df = df.select(ncs.by_dtype(nw.Int64, nw.Float64)*2) | ||
... return nw.to_native(df) | ||
We can then pass either pandas or Polars dataframes: | ||
>>> func(df_pd) | ||
a c | ||
0 2 8.2 | ||
1 4 4.6 | ||
>>> func(df_pl) | ||
shape: (2, 2) | ||
┌─────┬─────┐ | ||
│ a ┆ c │ | ||
│ --- ┆ --- │ | ||
│ i64 ┆ f64 │ | ||
╞═════╪═════╡ | ||
│ 2 ┆ 8.2 │ | ||
│ 4 ┆ 4.6 │ | ||
└─────┴─────┘ | ||
""" | ||
return by_dtype( | ||
dtypes.Int64, | ||
dtypes.Int32, | ||
dtypes.Int16, | ||
dtypes.Int8, | ||
dtypes.UInt64, | ||
dtypes.UInt32, | ||
dtypes.UInt16, | ||
dtypes.UInt8, | ||
dtypes.Float64, | ||
dtypes.Float32, | ||
) |
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,28 @@ | ||
from typing import Any | ||
|
||
import pandas as pd | ||
import polars as pl | ||
import pytest | ||
|
||
import narwhals as nw | ||
from narwhals.selectors import by_dtype | ||
from narwhals.selectors import numeric | ||
from tests.utils import compare_dicts | ||
|
||
data = {"a": [1, 1, 2], "b": ["a", "b", "c"], "c": [4.0, 5.0, 6.0]} | ||
|
||
|
||
@pytest.mark.parametrize("constructor", [pd.DataFrame, pl.DataFrame]) | ||
def test_selecctors(constructor: Any) -> None: | ||
df = nw.from_native(constructor(data)) | ||
result = nw.to_native(df.select(by_dtype([nw.Int64, nw.Float64]) + 1)) | ||
expected = {"a": [2, 2, 3], "c": [5.0, 6.0, 7.0]} | ||
compare_dicts(result, expected) | ||
|
||
|
||
@pytest.mark.parametrize("constructor", [pd.DataFrame, pl.DataFrame]) | ||
def test_numeric(constructor: Any) -> None: | ||
df = nw.from_native(constructor(data)) | ||
result = nw.to_native(df.select(numeric() + 1)) | ||
expected = {"a": [2, 2, 3], "c": [5.0, 6.0, 7.0]} | ||
compare_dicts(result, expected) |