@@ -367,17 +367,19 @@ def mean(self) -> Self:
367
367
Examples:
368
368
>>> import polars as pl
369
369
>>> import pandas as pd
370
+ >>> import pyarrow as pa
370
371
>>> import narwhals as nw
371
372
>>> df_pd = pd.DataFrame({"a": [-1, 0, 1], "b": [2, 4, 6]})
372
373
>>> 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]})
373
375
374
376
Let's define a dataframe-agnostic function:
375
377
376
378
>>> @nw.narwhalify
377
379
... def func(df):
378
380
... return df.select(nw.col("a", "b").mean())
379
381
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`:
381
383
382
384
>>> func(df_pd)
383
385
a b
@@ -391,6 +393,13 @@ def mean(self) -> Self:
391
393
╞═════╪═════╡
392
394
│ 0.0 ┆ 4.0 │
393
395
└─────┴─────┘
396
+ >>> func(df_pa)
397
+ pyarrow.Table
398
+ a: double
399
+ b: double
400
+ ----
401
+ a: [[0]]
402
+ b: [[4]]
394
403
"""
395
404
return self .__class__ (lambda plx : self ._call (plx ).mean ())
396
405
@@ -4054,17 +4063,19 @@ def mean(*columns: str) -> Expr:
4054
4063
Examples:
4055
4064
>>> import pandas as pd
4056
4065
>>> import polars as pl
4066
+ >>> import pyarrow as pa
4057
4067
>>> import narwhals as nw
4058
4068
>>> df_pl = pl.DataFrame({"a": [1, 8, 3]})
4059
4069
>>> df_pd = pd.DataFrame({"a": [1, 8, 3]})
4070
+ >>> df_pa = pa.table({"a": [1, 8, 3]})
4060
4071
4061
4072
We define a dataframe agnostic function:
4062
4073
4063
4074
>>> @nw.narwhalify
4064
4075
... def func(df):
4065
4076
... return df.select(nw.mean("a"))
4066
4077
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`:
4068
4079
4069
4080
>>> func(df_pd)
4070
4081
a
@@ -4078,6 +4089,11 @@ def mean(*columns: str) -> Expr:
4078
4089
╞═════╡
4079
4090
│ 4.0 │
4080
4091
└─────┘
4092
+ >>> func(df_pa)
4093
+ pyarrow.Table
4094
+ a: double
4095
+ ----
4096
+ a: [[4]]
4081
4097
"""
4082
4098
4083
4099
return Expr (lambda plx : plx .mean (* columns ))
0 commit comments