Skip to content

Commit 1ce93de

Browse files
docs: Add Pyarrow example to Expr.mean and nw.mean (#1207)
* Add Pyarrow example to Expr.mean * Make mean docstring consistent with stable v1 API
1 parent e4fe3ee commit 1ce93de

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

narwhals/expr.py

+18-2
Original file line numberDiff line numberDiff line change
@@ -367,17 +367,19 @@ def mean(self) -> Self:
367367
Examples:
368368
>>> import polars as pl
369369
>>> import pandas as pd
370+
>>> import pyarrow as pa
370371
>>> import narwhals as nw
371372
>>> df_pd = pd.DataFrame({"a": [-1, 0, 1], "b": [2, 4, 6]})
372373
>>> df_pl = pl.DataFrame({"a": [-1, 0, 1], "b": [2, 4, 6]})
374+
>>> df_pa = pa.table({"a": [-1, 0, 1], "b": [2, 4, 6]})
373375
374376
Let's define a dataframe-agnostic function:
375377
376378
>>> @nw.narwhalify
377379
... def func(df):
378380
... return df.select(nw.col("a", "b").mean())
379381
380-
We can then pass either pandas or Polars to `func`:
382+
We can pass any supported library such as Pandas, Polars, or PyArrow to `func`:
381383
382384
>>> func(df_pd)
383385
a b
@@ -391,6 +393,13 @@ def mean(self) -> Self:
391393
╞═════╪═════╡
392394
│ 0.0 ┆ 4.0 │
393395
└─────┴─────┘
396+
>>> func(df_pa)
397+
pyarrow.Table
398+
a: double
399+
b: double
400+
----
401+
a: [[0]]
402+
b: [[4]]
394403
"""
395404
return self.__class__(lambda plx: self._call(plx).mean())
396405

@@ -4054,17 +4063,19 @@ def mean(*columns: str) -> Expr:
40544063
Examples:
40554064
>>> import pandas as pd
40564065
>>> import polars as pl
4066+
>>> import pyarrow as pa
40574067
>>> import narwhals as nw
40584068
>>> df_pl = pl.DataFrame({"a": [1, 8, 3]})
40594069
>>> df_pd = pd.DataFrame({"a": [1, 8, 3]})
4070+
>>> df_pa = pa.table({"a": [1, 8, 3]})
40604071
40614072
We define a dataframe agnostic function:
40624073
40634074
>>> @nw.narwhalify
40644075
... def func(df):
40654076
... return df.select(nw.mean("a"))
40664077
4067-
We can then pass either pandas or Polars to `func`:
4078+
We can pass any supported library such as Pandas, Polars, or PyArrow to `func`:
40684079
40694080
>>> func(df_pd)
40704081
a
@@ -4078,6 +4089,11 @@ def mean(*columns: str) -> Expr:
40784089
╞═════╡
40794090
│ 4.0 │
40804091
└─────┘
4092+
>>> func(df_pa)
4093+
pyarrow.Table
4094+
a: double
4095+
----
4096+
a: [[4]]
40814097
"""
40824098

40834099
return Expr(lambda plx: plx.mean(*columns))

narwhals/stable/v1/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1254,17 +1254,19 @@ def mean(*columns: str) -> Expr:
12541254
Examples:
12551255
>>> import pandas as pd
12561256
>>> import polars as pl
1257+
>>> import pyarrow as pa
12571258
>>> import narwhals.stable.v1 as nw
12581259
>>> df_pl = pl.DataFrame({"a": [1, 8, 3]})
12591260
>>> df_pd = pd.DataFrame({"a": [1, 8, 3]})
1261+
>>> df_pa = pa.table({"a": [1, 8, 3]})
12601262
12611263
We define a dataframe agnostic function:
12621264
12631265
>>> @nw.narwhalify
12641266
... def func(df):
12651267
... return df.select(nw.mean("a"))
12661268
1267-
We can then pass either pandas or Polars to `func`:
1269+
We can pass any supported library such as Pandas, Polars, or PyArrow to `func`:
12681270
12691271
>>> func(df_pd)
12701272
a
@@ -1278,6 +1280,11 @@ def mean(*columns: str) -> Expr:
12781280
╞═════╡
12791281
│ 4.0 │
12801282
└─────┘
1283+
>>> func(df_pa)
1284+
pyarrow.Table
1285+
a: double
1286+
----
1287+
a: [[4]]
12811288
"""
12821289
return _stableify(nw.mean(*columns))
12831290

0 commit comments

Comments
 (0)